/* /Components/CooldownTimer.razor.rz.scp.css */
.cooldown-timer[b-jibp8jb35q] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.cooldown-icon[b-jibp8jb35q] {
    font-size: 18px;
    line-height: 1;
}

.cooldown-text[b-jibp8jb35q] {
    white-space: nowrap;
}
/* /Components/Gauge.razor.rz.scp.css */
.gauge-svg[b-oh151misci] {
    width: 100%;
    max-width: 440px;
    height: auto;
    position: relative;
    z-index: 2;
}

.gauge-segment[b-oh151misci] {
    stroke: rgba(0, 0, 0, 0.15);
    stroke-width: 2px;
    transition: stroke 0.5s ease;
}

.gauge-segment:hover[b-oh151misci] {
    stroke: rgba(255, 255, 255, 0.85);
}

.gauge-label[b-oh151misci] {
    fill: #ffffff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    user-select: none;
    opacity: 0.75;
    transition: font-size 0.6s ease,
                font-weight 0.6s ease,
                opacity 0.6s ease,
                filter 0.6s ease;
}

.gauge-label--active[b-oh151misci] {
    font-size: 25px;
    font-weight: 700;
    opacity: 1;
    animation: gauge-label-pulse-b-oh151misci 2s ease-in-out infinite;
}

@keyframes gauge-label-pulse-b-oh151misci {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.needle[b-oh151misci] {
    transform-origin: 220px 180px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.45));
}
/* /Components/LastVotes.razor.rz.scp.css */
.vote-dot[b-7hhrgnie5q] {
    stroke: #ffffff;
    stroke-width: 0.8;
    pointer-events: none;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.main-layout[b-ss0zluwnu9] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content[b-ss0zluwnu9] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

#blazor-error-ui[b-ss0zluwnu9] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-ss0zluwnu9] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-muzudwxljt],
.components-reconnect-repeated-attempt-visible[b-muzudwxljt],
.components-reconnect-failed-visible[b-muzudwxljt],
.components-pause-visible[b-muzudwxljt],
.components-resume-failed-visible[b-muzudwxljt],
.components-rejoining-animation[b-muzudwxljt] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-muzudwxljt],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-muzudwxljt],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-muzudwxljt],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-muzudwxljt],
#components-reconnect-modal.components-reconnect-retrying[b-muzudwxljt],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-muzudwxljt],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-muzudwxljt],
#components-reconnect-modal.components-reconnect-failed[b-muzudwxljt],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-muzudwxljt] {
    display: block;
}


#components-reconnect-modal[b-muzudwxljt] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-muzudwxljt 0.5s both;

    &[open] {
        animation: components-reconnect-modal-slideUp-b-muzudwxljt 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-muzudwxljt 0.5s ease-in-out 0.3s;
        animation-fill-mode: both;
    }

}

#components-reconnect-modal[b-muzudwxljt]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-muzudwxljt 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-muzudwxljt {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-muzudwxljt {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-muzudwxljt {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-muzudwxljt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-muzudwxljt] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-muzudwxljt] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

#components-reconnect-modal button:hover[b-muzudwxljt] {
    background-color: #3b6ea2;
}

#components-reconnect-modal button:active[b-muzudwxljt] {
    background-color: #6b9ed2;
}

.components-rejoining-animation[b-muzudwxljt] {
    position: relative;
    width: 80px;
    height: 80px;
}

.components-rejoining-animation div[b-muzudwxljt] {
    position: absolute;
    border: 3px solid #0087ff;
    opacity: 1;
    border-radius: 50%;
    animation: components-rejoining-animation-b-muzudwxljt 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2)[b-muzudwxljt] {
    animation-delay: -0.5s;
}

@keyframes components-rejoining-animation-b-muzudwxljt {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/VoteButton.razor.rz.scp.css */
.vote-button[b-ier541014k] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 90px;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    color: #1a1a1a;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.vote-button:hover:not(:disabled)[b-ier541014k] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    filter: brightness(1.1);
}

.vote-button:active:not(:disabled)[b-ier541014k] {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.vote-button:disabled[b-ier541014k] {
    cursor: not-allowed;
    opacity: 0.5;
    filter: grayscale(0.5);
    box-shadow: none;
}

.vote-label[b-ier541014k] {
    display: block;
}

.vote-level[b-ier541014k] {
    display: block;
    font-size: 11px;
    opacity: 0.7;
    font-weight: 400;
}
