/* _content/BlazorGiVlive/Shared/HeaderSection.razor.rz.scp.css */
@font-face {
    font-family: SevenSegment;
    src: url("ttf/Seven_Segment.ttf");
}


.header[b-g3jbmpe86m] {
    background-color: #292323;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.top-row[b-g3jbmpe86m] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

.logo[b-g3jbmpe86m] {
    font-weight: bold;
    font-size: 24px;
    color: #3498db;
    display: flex;
    align-items: center;
    grid-column: 1;
}

.logo img[b-g3jbmpe86m] {
    width: 120px;
}

.logo-icon[b-g3jbmpe86m] {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.clock-container[b-g3jbmpe86m] {
    grid-column: 2;
    text-align: center;
}

.clock[b-g3jbmpe86m] {
    font-size: 22px;
    color: #f1f5f9;
    font-weight: 500;
    background-color: #832222;
    padding: 8px 15px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: inline-block;
    min-width: 150px;
}

.zone[b-g3jbmpe86m] {
    grid-column: 3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.traffic-light[b-g3jbmpe86m] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 2px solid #2c3e50;
}

.traffic-light-inner[b-g3jbmpe86m] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: background-color 0.5s ease;
}

.traffic-light.red .traffic-light-inner[b-g3jbmpe86m] {
    background-color: #e74c3c;
    box-shadow: 0 0 10px #e74c3c80;
}

.traffic-light.green .traffic-light-inner[b-g3jbmpe86m] {
    background-color: #2ecc71;
    box-shadow: 0 0 10px #2ecc7180;
}

.profile-icon[b-g3jbmpe86m] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #2ecc71;
    color: white;
}

.traffic-light:hover[b-g3jbmpe86m], .profile-icon:hover[b-g3jbmpe86m] {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.zones[b-g3jbmpe86m] {
    display: flex;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
}

.zone[b-g3jbmpe86m] {
    background-color: #e8f4fc;
    color: #db3434;
    padding: 12px 20px;
    border-radius: 8px;
    /*width: 130px;*/
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/*.zone:hover {*/
/*    background-color: #db3434;*/
/*    color: white;*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
/*}*/

.scoreboard[b-g3jbmpe86m] {
    background-color: black;
    color: red;
    font-size: 1.5rem;
    font-family: SevenSegment !important;
    text-align: center;
    min-height: 60px;
    max-height: 60px;
    min-width: 150px;
    max-width: 150px;
}

.status-label[b-g3jbmpe86m] {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .top-row[b-g3jbmpe86m] {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logo[b-g3jbmpe86m], .clock-container[b-g3jbmpe86m], .new-zone[b-g3jbmpe86m] {
        grid-column: 1;
        justify-self: center;
    }

    .text-blocks[b-g3jbmpe86m] {
        flex-direction: column;
        align-items: center;
    }

    .text-block[b-g3jbmpe86m] {
        width: 80%;
    }

    .new-zone[b-g3jbmpe86m] {
        margin-top: 10px;
    }
}
/* _content/BlazorGiVlive/Shared/MainLayout.razor.rz.scp.css */
.page[b-gdqufio1d3] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-gdqufio1d3] {
    flex: 1;
}

.sidebar[b-gdqufio1d3] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-gdqufio1d3] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-gdqufio1d3]  a, .top-row .btn-link[b-gdqufio1d3] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-gdqufio1d3] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-gdqufio1d3] {
        display: none;
    }

    .top-row.auth[b-gdqufio1d3] {
        justify-content: space-between;
    }

    .top-row a[b-gdqufio1d3], .top-row .btn-link[b-gdqufio1d3] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-gdqufio1d3] {
        flex-direction: row;
    }

    .sidebar[b-gdqufio1d3] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-gdqufio1d3] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-gdqufio1d3], article[b-gdqufio1d3] {
        /*padding-left: 2rem !important;
        padding-right: 1.5rem !important;*/
    }
}
/* _content/BlazorGiVlive/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-g1yibo0itj] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-g1yibo0itj] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-g1yibo0itj] {
    font-size: 1.1rem;
}

.oi[b-g1yibo0itj] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-g1yibo0itj] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-g1yibo0itj] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-g1yibo0itj] {
        padding-bottom: 1rem;
    }

    .nav-item[b-g1yibo0itj]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-g1yibo0itj]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-g1yibo0itj]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-g1yibo0itj] {
        display: none;
    }

    .collapse[b-g1yibo0itj] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* _content/BlazorGiVlive/Shared/RedLight.razor.rz.scp.css */
.redLightContainer[b-fauzknxkax] {
    background-color: black;
    min-width: 120px;
    max-width: 120px;
    min-height: 250px;
    max-height: 250px;
    display: flex;
    flex-flow: column;
}

.bezel[b-fauzknxkax] {
    border: lightgray solid 2px;
}

.timingsafetyReady[b-fauzknxkax] {
    height: 90px;
    width: 100%;
    display: flex;
    flex-flow: row;
}

.timingReady[b-fauzknxkax], .safetyReady[b-fauzknxkax] {
    margin: 15px auto;
    margin-bottom: 0;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.readyText[b-fauzknxkax] {
    width: 100%;
    height: 100%;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
}

.greenLight[b-fauzknxkax] {
    margin: 10px auto;
    margin-top: -35px;
    width: 80px;
    height: 80px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.redLight[b-fauzknxkax] {
    margin: 10px auto;
    margin-top: -2px;
    width: 80px;
    height: 80px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.redColor[b-fauzknxkax] {
    background-color: red;
}

.greenColor[b-fauzknxkax] {
    background-color: lime;
}

.clearColor[b-fauzknxkax] {
    background-color: transparent;
}
