@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: "Roboto", Arial, sans-serif;
}

.blurDialogBackground {
    backdrop-filter: blur(20px);
}

/*Round corners of datepickers*/
.mud-paper.mud-elevation-8.mud-picker.mud-picker-paper.mud-picker-view.mud-picker-open.mud-picker-popover-paper {
    border-radius: 25px; /* Adjust the value as needed */
}
/*Remove start spacing on login/logout/user button top right START*/
.mud-nav-link .mud-nav-link-text {
    margin-left: 0px;
}
/*Remove start spacing on login/logout/user button top right END*/


/*Spacing between text and nav icons in navbar START*/
.mud-nav-link-icon.mud-nav-link-icon-default {
    margin-right: 10px;
}
/*Spacing between text and nav icons in navbar END*/


a, .btn-link, .mud-nav-link, .mud-nav-link-text {
    /*color: #DC0073;*/
    text-decoration: none;
}

/*Main buttons/links on index page START NAVMENU*/
    a:hover, .btn-link:hover, .mud-nav-link:hover, .mud-nav-link-text:hover {
        color: black;
        text-decoration: none;
    }

    a:active, .btn-link:active, .mud-nav-link:active, .mud-nav-link-text:active {
        color: #DC0073;
        text-decoration: none;
    }
/*Main buttons/links on index page END*/

.btn-primary {
    color: #0fe04a;
    background-color: #024c17;
}

.content {
    padding-top: 0em;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}


/*Button Ripple Effect for bootstrap buttons START*/
.btn:hover {
    filter: brightness(90%);
}

/*Button Ripple Effect for bootstrap buttons END*/



/*Button hover effect START*/
.zoomOnHover {
    transition: 0.4s cubic-bezier(0.6, 0.03, 0.28, 0.98);
    transform-origin: center center;
}

    .zoomOnHover:hover {
        transform: scale(1.03);
        transition: 0.4s cubic-bezier(0.6, 0.03, 0.28, 0.98);
    }

    .zoomOnHover:not(:hover) {
        transition: transform 0.4s cubic-bezier(0.6, 0.03, 0.28, 0.98);
        transform: scale(1);
    }

/*Button hover effect END*/


/*Messages when not loading, failing, etc (called in host.cshtml and or layout.cshtml) START*/
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

#components-reconnect-modal {
    display: none;
}

    #components-reconnect-modal.components-reconnect-show,
    #components-reconnect-modal.components-reconnect-failed,
    #components-reconnect-modal.components-reconnect-rejected {
        display: block;
    }
/*Messages when not loading, failing, etc (called in host.cshtml and or layout.cshtml) END*/


/*Default width of detail paga dialogs and position of dialog carousel nav icons START*/
.mud-dialog-width-xs {
     max-width: 613px; 
    width: 580px;
    max-width: 660px;
}


/*Room Editor VisibilityButton START*/
.roomVisibilityButton {
    background-color: gainsboro !important;
    padding: 10px !important;
}

    .roomVisibilityButton:hover {
        background-color: gainsboro !important;
        padding: 10px !important;
    }
/*Room Editor VisibilityButton END*/


.mud-input-outlined-border {
    border-radius: 24px !important;
}

.rz-event-content{ 
    border-radius: 24px !important;
}

.rz-dialog {
    border-radius: 24px !important;
}

.rz-scheduler {
    border-radius: 14px !important;
}



.azure-map-marker {
    cursor: pointer;
}

    .azure-map-marker:hover {
        cursor: crosshair;
    }

/*START Temporary fix for dialog overlap see issue: https://github.com/radzenhq/radzen-blazor/issues/1225 */
.rz-scheduler {
    position: relative;
    z-index: 1;
}
.rz-dialog-wrapper{
    position: fixed;
}
/*END Temporary fix for dialog overlap*/


/*START Keep mudblazor dialog title/actions visable when content gets long*/
.mud-dialog > .outline-none {
    min-height: 0;
    display: flex;
    flex-direction: column;
}

    .mud-dialog > .outline-none > div:nth-of-type(4) {
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

.mud-dialog .mud-dialog-content {
    overflow-y: auto;
}
/*END Keep mudblazor dialog title/actions visable when content gets long*/

/*START Azure Maps Popup*/
.popup-content-container {
    border-radius: 15px !important;
    overflow: hidden;
    white-space: normal !important;
}
/*End Azure Maps Popup*/