:root {
    --clr-primary: #609633;
    --clr-secondary: #5E5E4B;
    --clr-highlight: #E87D1E;
    --clr-primary-text: white;
    --clr-secondary-text: white;
    --clr-border: #DCDCDC;
    --clr-red: #cc1a06;
}

html, body {
    font-family: 'Mulish', sans-serif;
    margin: 0px;
    background: #EFEEEB;
    height: 100vh;
}

.validation-message {
    color: var(--clr-red);
    margin-top: 3px;
    font-size: .95rem;
}

#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;
    }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .6;
    z-index: 10003;
}

.app-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-15%, -15%);
    width: 240px;
    animation-name: beesandbombs;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.82, 0.01, 0.15, 1.01);
    z-index: 999999;
}

label {
    font-size: .95rem;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.w-80px {
    width: 80px;
}

.btn-pearle-color {
    background-color: var(--clr-primary) !important;
    color: #ffffff !important;
}

    .btn-pearle-color:hover {
        color: #ffffff !important;
        filter: brightness(90%);
        background-color: var(--clr-primary) !important;
    }

.btn-pearle-outline-color {
    border: 1px solid var(--clr-primary) !important;
}

.btn-pearle-highlight-color {
    background-color: var(--clr-highlight) !important;
    color: #ffffff !important;
}

    .btn-pearle-highlight-color:hover {
        color: #ffffff !important;
        filter: brightness(90%);
        background-color: var(--clr-highlight) !important;
    }

.btn-pearle-red-color {
    background-color: var(--clr-red) !important;
    color: #ffffff !important;
}

    .btn-pearle-red-color:hover {
        color: #ffffff;
        filter: brightness(90%);
    }

.w-100px {
    width: 100px;
}

.w-150px {
    width: 150px;
}

.app-card-title {
    color: #6C6C58;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: .02rem;
}

.app-card-subtitle {
    color: var(--clr-primary);
    font-weight: 600;
    margin-bottom: 0;
    padding-bottom: 0 !important;
    font-size: 1.2rem;
}

@media (max-width: 850px) {
    .app-card-title {
        font-size: 1.2rem;
    }

    .app-card-subtitle {
        font-size: 1.1rem;
    }
}

.app-remove-btn {
    cursor: pointer;
    font-size: 1.1rem;
}

/* ── Loading overlay ── */
.pvf-loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pvf-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pvf-spinner-ring {
    width: 64px;
    height: 64px;
    border: 6px solid var(--clr-border, #dee2e6);
    border-top-color: var(--clr-primary, #0d6efd);
    border-radius: 50%;
    animation: pvf-spin 0.75s linear infinite;
}

@keyframes pvf-spin {
    to {
        transform: rotate(360deg);
    }
}

.clr-primary {
    color: var(--clr-primary);
}