/* /Components/ColorPicker.razor.rz.scp.css */
/* Scoped styles for ColorPicker (AB#3612): moved out of a page-level <style>
   block so the rules cannot leak into other components. */

 /* Custom Color Picker Styles - Material Design */
.custom-color-picker[b-eda76n2t7d] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(32px, 1fr));
    gap: 6px;
    padding: 0;
    background: transparent;
    max-width: 100%;
}
 .color-option[b-eda76n2t7d] {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
 .color-option:hover:not(.disabled)[b-eda76n2t7d] {
    border-color: rgba(0,0,0,0.24);
    transform: scale(1.08);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    z-index: 1;
}
 .color-option.disabled[b-eda76n2t7d] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
 /* The chosen swatch: a ring in the tenant primary, rounded and lifted off the grid.
    Without it there is no way to tell which colour is selected. */
 .color-option.selected[b-eda76n2t7d] {
    border-color: var(--mud-palette-primary, #1976d2);
    border-width: 2px;
    border-radius: 50%;
    transform: scale(1.15);
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    z-index: 2;
}

 .color-option.unselected[b-eda76n2t7d] {
    border-radius: 4px;
}
 .color-option.solid-color[b-eda76n2t7d] {
    background-color: var(--color);
}
 .color-option.pattern-black-white[b-eda76n2t7d] {
    background: linear-gradient(90deg, 
        black 0%, 
        black 45%, 
        white 45%, 
        white 55%, 
        black 55%, 
        black 100%);
}
 .color-option.pattern-white-black[b-eda76n2t7d] {
    background: linear-gradient(90deg, 
        white 0%, 
        white 45%, 
        black 45%, 
        black 55%, 
        white 55%, 
        white 100%);
}
 .color-option-check[b-eda76n2t7d] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    z-index: 3;
}
 .check-white[b-eda76n2t7d] {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
 .check-black[b-eda76n2t7d] {
    color: black;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}
 /* Custom styling for color picker label */
.custom-color-picker-label[b-eda76n2t7d] {
    color: var(--mud-palette-primary) !important;
    font-weight: bold !important;
    font-size: 0.75rem !important;
}
/* /Components/LoadingOverlay.razor.rz.scp.css */
/* Scoped styles for LoadingOverlay (AB#3612): moved out of a page-level <style>
   block so the rules cannot leak into other components. */

.loading-overlay[b-sgs4l1te0y] {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.loading-overlay-fullscreen[b-sgs4l1te0y] {
    position: fixed;
}

.loading-content[b-sgs4l1te0y] {
    padding: 20px;
    border-radius: var(--dingo-radius, 6px);
    /* Follows the theme so the panel is not a white block in dark mode. */
    background-color: var(--mud-palette-surface, #fff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* /Components/VisitorConeNumberEditorComponent.razor.rz.scp.css */
/* Scoped styles for VisitorConeNumberEditorComponent (AB#3612): compact spacing
   for the gatehouse entry-data editor. */

.compact-form[b-x37x9hciv9] {
    padding: 8px 0;
}

    /* ::deep reaches the MudBlazor grid items rendered by the child component. */
    .compact-form[b-x37x9hciv9]  .mud-grid-item {
        padding: 4px 8px;
    }
/* /Shared/CountryCodePicker.razor.rz.scp.css */
/* Scoped styles for CountryCodePicker (AB#3612): moved out of a page-level <style>
   block so the rules cannot leak into other components. */

 .blocker[b-2hizxi1qqi] {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color:#000000;
    opacity:0.8;
    z-index:350;
}
 .CountryContainer[b-2hizxi1qqi] {
    display: block;
    position: fixed;
    background-color: #ffffff;
    width: 265px;
    height: 220px;
    margin-left: 20%;
    margin-right: auto;
    margin-top: 20%;
    margin-bottom: auto;
    z-index: 355;
    border-radius: 8px;
    box-shadow: 1px 1px 8px #cecece;
}
.list[b-2hizxi1qqi]{
    margin-left:3px;
    max-height:180px;
    overflow-y:scroll;
}
