/* /Components/Common/CategorySelector.razor.rz.scp.css */
.input-label[b-f1dwbhmb5s] {
    font-weight: 600;
    color: var(--dark-color);
    display: block;
}

.hint-text[b-f1dwbhmb5s] {
    color: var(--medium-color);
}

.category-grid[b-f1dwbhmb5s] {
    display: grid;
    margin-top: 0.5rem;
}

.category-card[b-f1dwbhmb5s] {
    border: 2px solid transparent;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    background-color: var(--background-color);
    transition: all 0.2s ease;
    gap: 0.75rem;
    box-sizing: border-box;
}

.category-card:hover[b-f1dwbhmb5s] {
    background: var(--light-color);
}

.category-card i[b-f1dwbhmb5s] {
    color: #717171;
    transition: color 0.2s;
}

.category-card span[b-f1dwbhmb5s] {
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
}

.category-card.active[b-f1dwbhmb5s] {
    border: 2px solid var(--brand);
}

.category-card.active i[b-f1dwbhmb5s] {
    color: var(--brand);
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .input-label[b-f1dwbhmb5s] {
        font-size: 1.5rem;
    }

    .hint-text[b-f1dwbhmb5s] {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .category-grid[b-f1dwbhmb5s] {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .category-card[b-f1dwbhmb5s] {
        padding: 1.5rem 1rem;
    }

    .category-card i[b-f1dwbhmb5s] {
        font-size: 1.75rem;
    }

    .category-card span[b-f1dwbhmb5s] {
        font-size: 0.85rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .input-label[b-f1dwbhmb5s] {
        font-size: 1.3rem;
    }

    .hint-text[b-f1dwbhmb5s] {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .category-grid[b-f1dwbhmb5s] {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .category-card[b-f1dwbhmb5s] {
        padding: 1.25rem 0.75rem;
    }

    .category-card i[b-f1dwbhmb5s] {
        font-size: 1.5rem;
    }

    .category-card span[b-f1dwbhmb5s] {
        font-size: 0.8rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .input-label[b-f1dwbhmb5s] {
        font-size: 1.15rem;
    }

    .hint-text[b-f1dwbhmb5s] {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .category-grid[b-f1dwbhmb5s] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .category-card[b-f1dwbhmb5s] {
        padding: 1rem 0.5rem;
    }

    .category-card i[b-f1dwbhmb5s] {
        font-size: 1.25rem;
    }

    .category-card span[b-f1dwbhmb5s] {
        font-size: 0.75rem;
    }
}
/* /Components/Common/Confirmation.razor.rz.scp.css */
.confirmation-group[b-9w1bttzqg8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    z-index: 3;
    animation: popIn-b-9w1bttzqg8 0.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.confirmation-icon[b-9w1bttzqg8], .confirmation-icon-error[b-9w1bttzqg8] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-icon[b-9w1bttzqg8] {
    color: var(--brand);
}

.confirmation-icon-error[b-9w1bttzqg8] {
    color: var(--error-color);
}

.confirmation-message[b-9w1bttzqg8] {
    color: var(--dark-color);
    font-weight: 500;
    text-align: center;
}

.modal-options[b-9w1bttzqg8] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.modal-save[b-9w1bttzqg8], .modal-save-error[b-9w1bttzqg8], .modal-cancel[b-9w1bttzqg8] {
    border: none;
    border-radius: var(--sleek-border-radius);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.2s, color 0.2s;
    flex: 1;
}

.modal-save[b-9w1bttzqg8] {
    background-color: var(--brand);
    color: var(--background-color);
}

.modal-save:hover[b-9w1bttzqg8] {
    background-color: var(--dark-color);
}

.modal-save-error[b-9w1bttzqg8] {
    background-color: var(--error-color);
    color: var(--background-color);
}

.modal-save-error:hover[b-9w1bttzqg8] {
    background-color: var(--dark-color);
}

.modal-cancel[b-9w1bttzqg8] {
    background-color: transparent;
    color: var(--dark-color);
}

.modal-cancel:hover[b-9w1bttzqg8] {
    background-color: var(--light-color);
}

/**************** Animations ****************/

@keyframes popIn-b-9w1bttzqg8 {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1441px) {

    .confirmation-group[b-9w1bttzqg8] {
        max-width: 28rem;
    }

    .confirmation-icon[b-9w1bttzqg8], .confirmation-icon-error[b-9w1bttzqg8] {
        font-size: 8rem;
        padding-bottom: 2rem;
    }

    .confirmation-message[b-9w1bttzqg8] {
        font-size: 1.25rem;
    }

    .modal-options[b-9w1bttzqg8] {
        margin-top: 2rem;
    }

    .modal-save[b-9w1bttzqg8], .modal-save-error[b-9w1bttzqg8], .modal-cancel[b-9w1bttzqg8] {
        padding: 1rem 1.5rem;
        font-size: 1.15rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1440px) {
    .confirmation-group[b-9w1bttzqg8] {
        max-width: 24rem;
    }

    .confirmation-icon[b-9w1bttzqg8], .confirmation-icon-error[b-9w1bttzqg8] {
        font-size: 6rem;
        padding-bottom: 1.75rem;
    }

    .confirmation-message[b-9w1bttzqg8] {
        font-size: 1.1rem;
    }

    .modal-options[b-9w1bttzqg8] {
        margin-top: 1.75rem;
    }

    .modal-save[b-9w1bttzqg8], .modal-save-error[b-9w1bttzqg8], .modal-cancel[b-9w1bttzqg8] {
        padding: 0.85rem 1.25rem;
        font-size: 1rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .confirmation-group[b-9w1bttzqg8] {
        max-width: 20rem;
        padding: 1rem;
    }

    .confirmation-icon[b-9w1bttzqg8], .confirmation-icon-error[b-9w1bttzqg8] {
        font-size: 4.5rem;
        padding-bottom: 1.25rem;
    }

    .confirmation-message[b-9w1bttzqg8] {
        font-size: 1.05rem;
    }

    .modal-options[b-9w1bttzqg8] {
        margin-top: 1.5rem;
    }

    .modal-save[b-9w1bttzqg8], .modal-save-error[b-9w1bttzqg8], .modal-cancel[b-9w1bttzqg8] {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
}
/* /Components/Common/DonutGraph.razor.rz.scp.css */
/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .graph-group[b-t0d8byru0w] {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        /*margin: 1rem 0rem;*/
    }

    .graph-title[b-t0d8byru0w] {
        color: var(--dark-color);
        font-size: 1rem;
        font-weight: 500;
    }

    svg circle[b-t0d8byru0w] {
        transition: stroke-dasharray 0.5s ease-out;
    }

    .graph-title-row[b-t0d8byru0w] {
        align-items: center;
        display: flex;
        margin-left: 1rem;
        flex-direction: column;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .graph-group[b-t0d8byru0w] {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        /*margin: 1rem 0rem;*/
    }

    .graph-title[b-t0d8byru0w] {
        color: var(--dark-color);
        font-size: 1rem;
        font-weight: 500;
    }

    svg circle[b-t0d8byru0w] {
        transition: stroke-dasharray 0.5s ease-out;
    }

    .graph-title-row[b-t0d8byru0w] {
        align-items: center;
        display: flex;
        margin-left: 1rem;
        flex-direction: column;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .graph-group[b-t0d8byru0w] {
        display: none;
    }
}
/* /Components/Common/EditableChip.razor.rz.scp.css */
.chip[b-9r52nsl1ol] {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--medium-color);
    border-radius: 30px;
    background: var(--background-color);
    font-weight: 500;
    color: var(--dark-color);
    transition: border-color 0.2s;
}

.chip:hover[b-9r52nsl1ol], .chip.editing[b-9r52nsl1ol] {
    border-color: var(--dark-color);
}

.chip-icon[b-9r52nsl1ol] {
    color: var(--dark-color);
}

.chip-text[b-9r52nsl1ol] {
    cursor: pointer;
    min-width: 40px;
}

.chip input[b-9r52nsl1ol] {
    border: none;
    outline: none;
    background: transparent;
    font-weight: 500;
    font-family: inherit;
    color: var(--dark-color);
    padding: 0;
    width: 140px;
}

.delete-btn[b-9r52nsl1ol] {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dark-color);
    transition: background 0.2s ease, color 0.2s ease;
}

.delete-btn:hover[b-9r52nsl1ol] {
    background: var(--brand);
    color: var(--background-color);
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .chip[b-9r52nsl1ol] {
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .chip-icon[b-9r52nsl1ol] {
        font-size: 0.85rem;
    }

    .chip input[b-9r52nsl1ol] {
        font-size: 0.9rem;
    }

    .delete-btn[b-9r52nsl1ol] {
        width: 1.25rem;
        height: 1.25rem;
        font-size: 0.75rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .chip[b-9r52nsl1ol] {
        gap: 0.4rem;
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

    .chip-icon[b-9r52nsl1ol] {
        font-size: 0.8rem;
    }

    .chip input[b-9r52nsl1ol] {
        font-size: 0.85rem;
    }

    .delete-btn[b-9r52nsl1ol] {
        width: 1.15rem;
        height: 1.15rem;
        font-size: 0.7rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .chip[b-9r52nsl1ol] {
        gap: 0.5rem;
        padding: 0.6rem 0.85rem;
        font-size: 0.9rem;
    }

    .chip-icon[b-9r52nsl1ol] {
        font-size: 0.85rem;
    }

    .chip input[b-9r52nsl1ol] {
        font-size: 16px;
    }

    .delete-btn[b-9r52nsl1ol] {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.85rem;
    }
}
/* /Components/Common/EditAvatar.razor.rz.scp.css */
.avatar-group[b-pm1dj271zk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 30rem;
    margin: 0 auto 1.5rem auto;
}

.icon-group[b-pm1dj271zk] {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon[b-pm1dj271zk] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img[b-pm1dj271zk] {
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.avatar[b-pm1dj271zk] {
    border-radius: 50%;
    background-color: var(--brand);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--background-color);
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
    border: 2px solid var(--light-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.avatar img[b-pm1dj271zk] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buttons-group[b-pm1dj271zk] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.delete-button[b-pm1dj271zk], .change-button[b-pm1dj271zk] {
    border-radius: var(--sleek-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-weight: 600;
}

.delete-button[b-pm1dj271zk] {
    background: transparent;
    color: var(--dark-color);
    outline: none;
    border: none;
}

.delete-button:hover[b-pm1dj271zk] {
    background: var(--light-color);
    border-color: var(--medium-color);
}

.change-button[b-pm1dj271zk] {
    background: var(--brand);
    color: var(--background-color);
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(255,106,0,0.2);
}

.change-button:hover[b-pm1dj271zk] {
    background: var(--dark-color);
}

.button-icon[b-pm1dj271zk] {
    margin-right: 0.5rem;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1441px) {
    .icon img[b-pm1dj271zk] {
        height: 8rem;
        width: 8rem;
    }

    .avatar[b-pm1dj271zk] {
        width: 8rem;
        height: 8rem;
        font-size: 3.5rem;
    }

    .delete-button[b-pm1dj271zk], .change-button[b-pm1dj271zk] {
        height: 3.25rem;
        font-size: 1rem;
    }

    .button-icon[b-pm1dj271zk] {
        font-size: 1.1rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1440px) {
    .icon img[b-pm1dj271zk] {
        height: 7rem;
        width: 7rem;
    }

    .avatar[b-pm1dj271zk] {
        width: 7rem;
        height: 7rem;
        font-size: 3rem;
    }

    .delete-button[b-pm1dj271zk], .change-button[b-pm1dj271zk] {
        height: 3rem;
        font-size: 0.95rem;
    }

    .button-icon[b-pm1dj271zk] {
        font-size: 1rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .avatar-group[b-pm1dj271zk] {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .icon img[b-pm1dj271zk] {
        height: 5.5rem;
        width: 5.5rem;
    }

    .avatar[b-pm1dj271zk] {
        width: 5.5rem;
        height: 5.5rem;
        font-size: 2.5rem;
    }

    .buttons-group[b-pm1dj271zk] {
        gap: 0.75rem;
    }

    .delete-button[b-pm1dj271zk], .change-button[b-pm1dj271zk] {
        height: 3rem;
        font-size: 0.95rem;
    }

    .button-icon[b-pm1dj271zk] {
        font-size: 0.95rem;
    }
}
/* /Components/Common/EmptyState.razor.rz.scp.css */
/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1441px) {
    .empty-spacing[b-qij7q7f866] {
        padding-top: 4rem;
    }

    .main-column[b-qij7q7f866] {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .icon-row[b-qij7q7f866] {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        color: var(--brand);
        font-size: 7rem;
        padding-bottom: 0.5rem;
    }

    .title[b-qij7q7f866] {
        font-size: 1.5rem;
        font-weight: 500;
        color: var(--dark-color);
    }

    .description[b-qij7q7f866] {
        font-size: 1rem;
        font-weight: 500;
        color: var(--dark-color);
        text-align: center;
        opacity: 0.5;
    }

    .button[b-qij7q7f866] {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 50rem;
        padding: 1rem 1.25rem;
        gap: 0.5rem;
        margin-top: 1rem;
        background: var(--brand);
        color: var(--background-color);
    }

    .button:hover[b-qij7q7f866] {
        cursor: pointer;
        background: var(--dark-color);
    }

    .button-icon[b-qij7q7f866] {
        font-size: 1rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1440px) {
    .empty-spacing[b-qij7q7f866] {
        padding-top: 4rem;
    }

    .main-column[b-qij7q7f866] {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .icon-row[b-qij7q7f866] {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        color: var(--brand);
        font-size: 5rem;
        padding-bottom: 0.5rem;
    }

    .title[b-qij7q7f866] {
        font-size: 1rem;
        font-weight: 500;
        color: var(--dark-color);
    }

    .description[b-qij7q7f866] {
        font-size: 0.75rem;
        font-weight: 500;
        color: var(--dark-color);
        text-align: center;
        opacity: 0.5;
    }

    .button[b-qij7q7f866] {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 50rem;
        padding: 0.85rem 1.25rem;
        gap: 0.5rem;
        margin-top: 1rem;
        background: var(--brand);
        color: var(--background-color);
    }

    .button:hover[b-qij7q7f866] {
        cursor: pointer;
        background: var(--dark-color);
        transition: 0.25s;
    }

    .button-icon[b-qij7q7f866] {
        font-size: 0.85rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .empty-spacing[b-qij7q7f866] {
        padding-top: 4rem;
    }

    .main-column[b-qij7q7f866] {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .icon-row[b-qij7q7f866] {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        color: var(--brand);
        font-size: 6rem;
        padding-bottom: 0.5rem;
    }

    .title[b-qij7q7f866] {
        font-size: 1.5rem;
        font-weight: 500;
        color: var(--dark-color);
    }

    .description[b-qij7q7f866] {
        font-size: 1rem;
        font-weight: 500;
        color: var(--dark-color);
        text-align: center;
        opacity: 0.5;
    }

    .button[b-qij7q7f866] {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 50rem;
        padding: 1rem 1.25rem;
        gap: 0.5rem;
        margin-top: 1rem;
        background: var(--brand);
        color: var(--background-color);
    }

    .button:hover[b-qij7q7f866] {
        cursor: pointer;
        background: var(--dark-color);
    }

    .button-icon[b-qij7q7f866] {
        font-size: 1rem;
    }
}
/* /Components/Common/Footer.razor.rz.scp.css */
/*********************************************/
/*                                           */
/*               Shared / Base               */
/*        (mobile-first, shared rules)       */
/*                                           */
/*********************************************/

.footer[b-np11cf01wk] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 0;
    color: var(--dark-color);
}

.footer[b-np11cf01wk]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: var(--light-color);
    pointer-events: none;
}

.footer .links[b-np11cf01wk] {
    display: flex;
    gap: 18px;
}

.footer a[b-np11cf01wk] {
    color: var(--dark-color);
    text-decoration: none;
}

.footer a:hover[b-np11cf01wk] {
    color: var(--brand);
}

.group[b-np11cf01wk] {
    display: flex;
    align-items: center;
    gap: 10px;
}

/*********************************************/
/*                                           */
/*              Laptop and up                */
/*                                           */
/*********************************************/

@media screen and (min-width: 1251px) {
    .footer[b-np11cf01wk] {
        max-width: 860px;
        width: 100%;
        margin-top: 80px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        padding: 28px 40px;
        padding-bottom: 5rem;
    }
}

/*********************************************/
/*                                           */
/*              Desktop and up               */
/*                                           */
/*********************************************/

@media screen and (max-width: 1250px) {
    .footer[b-np11cf01wk] {
        width: 90%;
        margin-top: 80px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        padding: 20px 0;
        bottom: 0;
        font-size: 0.85rem;
        padding-bottom: 5rem;
    }

    .group[b-np11cf01wk] {
        flex-direction: column;
        align-items: start;
        gap: 2px;
    }

    .divider[b-np11cf01wk] {
        display: none !important;
    }
}
/* /Components/Common/Greetings.razor.rz.scp.css */
/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .greeting-group[b-awr1sg2ejt] {
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .greeting[b-awr1sg2ejt] {
        font-weight: 600;
        font-size: 2rem;
        color: var(--dark-color);
    }

    .dashboard-message[b-awr1sg2ejt] {
        font-weight: 400;
        font-size: 1.25rem;
        color: var(--dark-color);
    }

    /**************** Toggle Switch ****************/

    .settings-value[b-awr1sg2ejt] {
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 0.85rem;
    }

    .label[b-awr1sg2ejt] {
        color: var(--dark-color);
        margin-right: 0.5rem;
    }

    .switch-container[b-awr1sg2ejt] {
        display: flex;
        align-items: center;
    }

    .switch[b-awr1sg2ejt] {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 24px;
        margin-right: 6px;
    }

    .switch input[b-awr1sg2ejt] {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider[b-awr1sg2ejt] {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--light-color);
        transition: 0.4s;
        border-radius: 24px;
    }

    .slider[b-awr1sg2ejt]:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 3px;
        background-color: var(--dark-color);
        transition: 0.4s;
        border-radius: 50%;
    }

    input:checked + .slider[b-awr1sg2ejt] {
        background-color: var(--brand);
    }

    input:checked + .slider[b-awr1sg2ejt]:before {
        transform: translateX(24px);
    }

    .slider.round[b-awr1sg2ejt] {
        border-radius: 24px;
    }

    /**************** Button ****************/

    .button-container[b-awr1sg2ejt] {
        
    }

    .button[b-awr1sg2ejt] {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 50rem;
        padding: 0.85rem 1.25rem;
        gap: 0.5rem;
        margin-top: 1rem;
        background: transparent;
        color: var(--dark-color);
        outline: none;
        border: 2px solid var(--error-color);
    }

    .button:hover[b-awr1sg2ejt] {
        cursor: pointer;
        background: var(--error-color);
        transition: 0.25s;
    }

    .button-icon[b-awr1sg2ejt] {
        font-size: 0.85rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/
@media screen and (min-width: 992px) and (max-width: 1625px) {
    .greeting-group[b-awr1sg2ejt] {
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .greeting[b-awr1sg2ejt] {
        font-weight: 600;
        font-size: 1.5rem;
        color: var(--dark-color);
    }

    .dashboard-message[b-awr1sg2ejt] {
        font-weight: 400;
        font-size: 0.85rem;
        color: var(--dark-color);
    }

    /**************** Toggle Switch ****************/

    .settings-value[b-awr1sg2ejt] {
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 0.85rem;
    }

    .label[b-awr1sg2ejt] {
        color: var(--dark-color);
        margin-right: 0.5rem;
        font-size: 0.85rem;
    }

    .switch-container[b-awr1sg2ejt] {
        display: flex;
        align-items: center;
    }

    .switch[b-awr1sg2ejt] {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 24px;
        margin-right: 6px;
    }

    .switch input[b-awr1sg2ejt] {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider[b-awr1sg2ejt] {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--light-color);
        transition: 0.4s;
        border-radius: 24px;
    }

    .slider[b-awr1sg2ejt]:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 3px;
        background-color: var(--dark-color);
        transition: 0.4s;
        border-radius: 50%;
    }

    input:checked + .slider[b-awr1sg2ejt] {
        background-color: var(--brand);
    }

    input:checked + .slider[b-awr1sg2ejt]:before {
        transform: translateX(24px);
    }

    .slider.round[b-awr1sg2ejt] {
        border-radius: 24px;
    }

    /**************** Button ****************/

    .button-container[b-awr1sg2ejt] {
    }

    .button[b-awr1sg2ejt] {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 50rem;
        padding: 0.85rem 1.25rem;
        gap: 0.5rem;
        margin-top: 1rem;
        background: transparent;
        color: var(--dark-color);
        outline: none;
        border: 2px solid var(--error-color);
    }

    .button:hover[b-awr1sg2ejt] {
        cursor: pointer;
        background: var(--error-color);
        transition: 0.25s;
    }

    .button-icon[b-awr1sg2ejt] {
        font-size: 0.85rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .greeting-group[b-awr1sg2ejt] {
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .greeting[b-awr1sg2ejt] {
        font-weight: 600;
        font-size: 1.5rem;
        color: var(--dark-color);
    }

    .dashboard-message[b-awr1sg2ejt] {
        font-weight: 400;
        font-size: 1rem;
        color: var(--dark-color);
    }

    /**************** Toggle Switch ****************/

    .settings-value[b-awr1sg2ejt] {
        display: none;
    }

    /**************** Button ****************/

    .button-container[b-awr1sg2ejt] {
    }

    .button[b-awr1sg2ejt] {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 500;
        border-radius: 50rem;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        margin-top: 1rem;
        background: transparent;
        color: var(--dark-color);
        outline: none;
        border: 2px solid var(--error-color);
    }

    .button:hover[b-awr1sg2ejt] {
        cursor: pointer;
        background: var(--error-color);
        transition: 0.25s;
    }

    .button-icon[b-awr1sg2ejt] {
        font-size: 0.75rem;
    }
}
/* /Components/Common/Header.razor.rz.scp.css */
.site-header[b-tleasek32c] {
    position: fixed;
    top: 0;
    inset-inline: 0;
    width: 100%;
    z-index: 10;
    background: var(--background-color);
    border-bottom: 2px solid var(--light-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height 0.25s ease-in-out, background-color 0.25s ease;
    box-sizing: border-box;
}

.brand-slot[b-tleasek32c] {
    justify-self: start;
}

.actions[b-tleasek32c] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn[b-tleasek32c] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--sleek-border-radius);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-btn:focus-visible[b-tleasek32c] {
    outline: 2px solid color-mix(in oklab, var(--brand) 60%, white);
    outline-offset: 2px;
}

.btn-ghost[b-tleasek32c] {
    background: var(--light-color);
    color: var(--dark-color);
}

.btn-ghost:hover[b-tleasek32c] {
    background: var(--dark-color);
    color: var(--background-color);
}

.btn-primary[b-tleasek32c] {
    background: var(--brand);
    color: var(--background-color);
    box-shadow: 0 8px 18px rgba(255,106,0,.25);
}

.btn-primary:hover[b-tleasek32c] {
    background: var(--dark-color);
    color: var(--background-color);
}

.header-search-backdrop[b-tleasek32c] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 5;
}

.header-search-slot[b-tleasek32c] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.minified-search-btn[b-tleasek32c] {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid var(--light-color);
    border-radius: 50rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
}

.minified-search-btn:hover[b-tleasek32c] {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1), 0 6px 16px rgba(0,0,0,0.08);
}

.minified-search-btn.hidden[b-tleasek32c] {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}

.mini-text[b-tleasek32c] {
    font-weight: 600;
    color: var(--dark-color);
    white-space: nowrap;
}

.mini-text.gray[b-tleasek32c] {
    color: var(--medium-color);
    font-weight: 400;
}

.mini-divider[b-tleasek32c] {
    background-color: #e5e7eb;
}

.mini-search-icon[b-tleasek32c] {
    background: var(--brand);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expanded-search-container[b-tleasek32c] {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) scale(0.95) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
}

.expanded-search-container.expanded[b-tleasek32c] {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1) translateY(0);
}

.user-menu-wrapper[b-tleasek32c] {
    display: block;
}

.auth-buttons-wrapper[b-tleasek32c] {
    display: flex;
    gap: 10px;
}

.desktop-search-layout[b-tleasek32c] {
    display: flex;
    align-items: center;
}

.mobile-search-layout[b-tleasek32c] {
    display: none;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {

    .site-header[b-tleasek32c] {
        height: 90px;
        padding: 0 40px;
    }

    .site-header.is-expanded[b-tleasek32c] {
        height: 160px;
    }

    .nav-btn[b-tleasek32c] {
        height: 2.5rem;
        padding: 0 1.25rem;
        font-size: 1rem;
    }

    .minified-search-btn[b-tleasek32c] {
        padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    }

    .mini-text[b-tleasek32c] {
        font-size: 0.85rem;
    }

    .mini-divider[b-tleasek32c] {
        height: 24px;
        width: 1px;
        margin: 0 16px;
    }

    .mini-search-icon[b-tleasek32c] {
        width: 32px;
        height: 32px;
        margin-left: 16px;
        font-size: 0.8rem;
    }

    .expanded-search-container[b-tleasek32c] {
        width: 850px;
    }
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .site-header[b-tleasek32c] {
        height: 80px;
        padding: 0 24px;
    }

    .site-header.is-expanded[b-tleasek32c] {
        height: 150px;
    }

    .nav-btn[b-tleasek32c] {
        height: 2.25rem;
        padding: 0 1rem;
        font-size: 0.9rem;
    }

    .minified-search-btn[b-tleasek32c] {
        padding: 0.4rem 0.4rem 0.4rem 1.25rem;
    }

    .mini-text[b-tleasek32c] {
        font-size: 0.8rem;
    }

    .mini-divider[b-tleasek32c] {
        height: 20px;
        width: 1px;
        margin: 0 12px;
    }

    .mini-search-icon[b-tleasek32c] {
        width: 28px;
        height: 28px;
        margin-left: 12px;
        font-size: 0.75rem;
    }

    .expanded-search-container[b-tleasek32c] {
        width: 750px;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/
@media screen and (max-width: 991px) {

    .site-header[b-tleasek32c] {
        height: 70px;
        padding: 0 16px;
    }

    .site-header.is-expanded[b-tleasek32c] {
        height: 120px;
    }

    .site-header.has-search[b-tleasek32c] {
        justify-content: center;
    }

    .site-header.has-search .brand-slot[b-tleasek32c] {
        display: none;
    }

    .site-header.has-search .user-menu-wrapper[b-tleasek32c] {
        display: none;
    }

    .site-header.has-search .auth-buttons-wrapper[b-tleasek32c] {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--background-color);
        padding: 1rem;
        border-top: 1px solid var(--light-color);
        box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
        z-index: 50;
        gap: 1rem;
    }

    .site-header.has-search .auth-buttons-wrapper .nav-btn[b-tleasek32c] {
        flex: 1;
        height: 3rem;
        font-size: 1rem;
    }

    .site-header.no-search[b-tleasek32c] {
        justify-content: space-between;
    }

    .site-header.no-search .nav-btn[b-tleasek32c] {
        height: 2rem;
        padding: 0 0.75rem;
        font-size: 0.8rem;
    }

    .header-search-slot[b-tleasek32c] {
        position: static;
        transform: none;
        width: 100%;
    }

    .minified-search-btn[b-tleasek32c] {
        width: 100%;
        justify-content: space-between;
        padding: 0.35rem 0.35rem 0.35rem 1.25rem;
    }

    .desktop-search-layout[b-tleasek32c] {
        display: none;
    }

    .mobile-search-layout[b-tleasek32c] {
        display: flex;
        flex: 1;
        align-items: center;
        overflow: hidden;
        padding-right: 10px;
    }

    .mobile-search-layout .mini-text[b-tleasek32c] {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mini-text[b-tleasek32c] {
        font-size: 0.9rem;
    }

    .mini-search-icon[b-tleasek32c] {
        width: 32px;
        height: 32px;
        margin-left: 8px;
        font-size: 0.8rem;
    }

    .expanded-search-container[b-tleasek32c] {
        width: 95vw;
    }
}
/* /Components/Common/ImageUpload.razor.rz.scp.css */
.modal[b-h81tnia77o] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    z-index: 999;
    animation: fadeIn-b-h81tnia77o 0.2s ease-out;
}

.modal-card[b-h81tnia77o] {
    background: var(--background-color);
    position: relative;
    width: 100%;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
}

.modal-close[b-h81tnia77o] {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--dark-color);
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, color 0.2s;
}

.modal-close:hover[b-h81tnia77o] {
    background: var(--brand);
    color: var(--background-color);
}

.modal-header[b-h81tnia77o] {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.modal-title[b-h81tnia77o] {
    font-weight: 700;
}

.modal-description[b-h81tnia77o] {
    color: var(--medium-color);
    margin: 0;
}

.modal-group[b-h81tnia77o] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-drop-zone[b-h81tnia77o] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: var(--border-radius);
    border: 2px dashed var(--light-color);
    transition: background-color 0.2s, border-color 0.2s;
}

.image-drop-zone.hover[b-h81tnia77o] {
    background-color: var(--light-color);
    border-color: var(--brand);
}

.upload-icon[b-h81tnia77o] {
    color: var(--dark-color);
}

.drop-file-message[b-h81tnia77o] {
    font-weight: 700;
    color: var(--dark-color);
}

.or-message[b-h81tnia77o] {
    font-weight: 500;
    color: var(--medium-color);
    margin: 1rem 0;
}

.files-supported-message-group[b-h81tnia77o] {
    text-align: center;
}

.files-supported-message[b-h81tnia77o] {
    font-weight: 500;
    color: var(--medium-color);
}

.big-upload-button[b-h81tnia77o] {
    border-radius: 50rem;
    background: var(--brand);
    color: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(255,106,0,0.2);
    transition: background 0.2s;
    position: relative;
    z-index: 15;
}

.big-upload-button:hover[b-h81tnia77o] {
    background: var(--brand-light);
}

.post-icon[b-h81tnia77o] {
    margin-right: 0.5rem;
}

.post-text[b-h81tnia77o] {
    font-weight: 600;
}

/**************** Animations ****************/

@keyframes fadeIn-b-h81tnia77o {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popIn-b-h81tnia77o {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideUp-b-h81tnia77o {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}


/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .modal[b-h81tnia77o] {
        align-items: center;
        justify-content: center;
    }

    .modal-card[b-h81tnia77o] {
        padding: 2.5rem;
        border-radius: 16px;
        width: 45rem;
        max-width: 90vw;
        animation: popIn-b-h81tnia77o 0.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .modal-close[b-h81tnia77o] {
        top: 2rem;
        right: 2rem;
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.75rem;
    }

    .modal-title[b-h81tnia77o] {
        font-size: 2rem;
    }

    .modal-description[b-h81tnia77o] {
        font-size: 1.05rem;
    }

    .image-drop-zone[b-h81tnia77o] {
        height: 30rem;
    }

    .upload-icon[b-h81tnia77o] {
        font-size: 7rem;
        margin-bottom: 1rem;
    }

    .drop-file-message[b-h81tnia77o] {
        font-size: 1.5rem;
    }

    .or-message[b-h81tnia77o] {
        font-size: 1rem;
    }

    .big-upload-button[b-h81tnia77o] {
        height: 3.5rem;
        width: 14rem;
        font-size: 1.1rem;
    }

    .files-supported-message-group[b-h81tnia77o] {
        margin-top: 4rem;
    }

    .files-supported-message[b-h81tnia77o] {
        font-size: 1rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .modal[b-h81tnia77o] {
        align-items: center;
        justify-content: center;
    }

    .modal-card[b-h81tnia77o] {
        padding: 2rem;
        border-radius: 12px;
        width: 40rem;
        max-width: 90vw;
        animation: popIn-b-h81tnia77o 0.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .modal-close[b-h81tnia77o] {
        top: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    .modal-title[b-h81tnia77o] {
        font-size: 1.75rem;
    }

    .modal-description[b-h81tnia77o] {
        font-size: 1rem;
    }

    .image-drop-zone[b-h81tnia77o] {
        height: 25rem;
    }

    .upload-icon[b-h81tnia77o] {
        font-size: 5rem;
        margin-bottom: 1rem;
    }

    .drop-file-message[b-h81tnia77o] {
        font-size: 1.25rem;
    }

    .or-message[b-h81tnia77o] {
        font-size: 0.85rem;
    }

    .big-upload-button[b-h81tnia77o] {
        height: 3rem;
        width: 12rem;
        font-size: 1rem;
    }

    .files-supported-message-group[b-h81tnia77o] {
        margin-top: 3rem;
    }

    .files-supported-message[b-h81tnia77o] {
        font-size: 0.85rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {

    .modal[b-h81tnia77o] {
        align-items: flex-end;
        justify-content: center;
    }

    .modal-card[b-h81tnia77o] {
        padding: 1.5rem 1rem calc(1.5rem + env(safe-area-inset-bottom));
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        animation: slideUp-b-h81tnia77o 0.3s cubic-bezier(0.33, 0, 0.2, 1) forwards;
    }

    .modal-close[b-h81tnia77o] {
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
        background: var(--light-color);
    }

    .modal-title[b-h81tnia77o] {
        font-size: 1.35rem;
        padding-right: 2.5rem;
    }

    .modal-description[b-h81tnia77o] {
        font-size: 0.9rem;
    }

    .image-drop-zone[b-h81tnia77o] {
        height: 20rem;
        border: none;
    }

    .upload-icon[b-h81tnia77o] {
        font-size: 4rem;
        margin-bottom: 0.5rem;
    }

    .drop-file-message[b-h81tnia77o] {
        font-size: 1.15rem;
    }

    .or-message[b-h81tnia77o] {
        font-size: 0.8rem;
        margin: 0.75rem 0;
    }

    .big-upload-button[b-h81tnia77o] {
        height: 3.5rem;
        width: 100%;
        font-size: 1.05rem;
    }

    .files-supported-message-group[b-h81tnia77o] {
        margin-top: 2rem;
    }

    .files-supported-message[b-h81tnia77o] {
        font-size: 0.8rem;
    }
}
/* /Components/Common/Loading.razor.rz.scp.css */
/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1441px) {
    .background[b-apmk4aunqm] {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .loading-icon[b-apmk4aunqm] {
        color: var(--brand);
        font-size: 5rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/
@media screen and (min-width: 992px) and (max-width: 1440px) {
    .background[b-apmk4aunqm] {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .loading-icon[b-apmk4aunqm] {
        color: var(--brand);
        font-size: 5rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/
@media screen and (max-width: 991px) {
    .background[b-apmk4aunqm] {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .loading-icon[b-apmk4aunqm] {
        color: var(--brand);
        font-size: 5rem;
    }
}
/* /Components/Common/Modal.razor.rz.scp.css */
/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .modal[b-v6sc6b0st0] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        display: block;
        z-index: 999;
    }

    .modal-content[b-v6sc6b0st0] {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: var(--background-color);
        padding-top: 3rem;
        padding-bottom: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        border-radius: var(--sleek-border-radius);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        z-index: 3;
        width: 25rem;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .confirmation-icon[b-v6sc6b0st0] {
        font-size: 5rem;
        color: var(--brand);
        padding-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-message[b-v6sc6b0st0] {
        color: var(--dark-color);
        font-weight: 500;
        text-align: center;
        font-size: 20px;
        margin-bottom: 1rem;
    }

    .modal-options[b-v6sc6b0st0] {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
        width: 100%;
        gap: 1rem;
    }

    .modal-save[b-v6sc6b0st0] {
        background-color: var(--brand);
        color: var(--background-color);
        padding: 1rem 1.5rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        margin-left: 0.5rem;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 10rem;
        gap: 0.75rem;
    }

    .modal-save:hover[b-v6sc6b0st0] {
        background-color: var(--dark-color);
    }

    .modal-save-error[b-v6sc6b0st0] {
        background-color: var(--error-color);
        color: var(--background-color);
        padding: 1rem 1.5rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        margin-left: 0.5rem;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 10rem;
        gap: 0.75rem;
    }

    .modal-save-error:hover[b-v6sc6b0st0] {
        background-color: var(--dark-color);
    }

    .modal-cancel[b-v6sc6b0st0] {
        background-color: transparent;
        color: var(--dark-color);
        padding: 1rem 1.5rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        margin-right: 0.5rem;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 10rem;
        gap: 0.75rem;
    }

    .modal-cancel:hover[b-v6sc6b0st0] {
        background-color: var(--light-color);
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .modal[b-v6sc6b0st0] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        display: block;
        z-index: 999;
    }

    .modal-content[b-v6sc6b0st0] {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: var(--background-color);
        padding-top: 3rem;
        padding-bottom: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        border-radius: var(--sleek-border-radius);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        z-index: 3;
        width: 22rem;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .confirmation-icon[b-v6sc6b0st0] {
        font-size: 4rem;
        color: var(--brand);
        padding-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-message[b-v6sc6b0st0] {
        color: var(--dark-color);
        font-weight: 500;
        text-align: center;
        font-size: 16px;
        margin-bottom: 1rem;
    }

    .modal-options[b-v6sc6b0st0] {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
        width: 100%;
        gap: 0.5rem;
    }

    .modal-save[b-v6sc6b0st0] {
        background-color: var(--brand);
        color: var(--background-color);
        padding: 0.75rem 1rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        width: 7rem;
        gap: 0.5rem;
    }

    .modal-save:hover[b-v6sc6b0st0] {
        background-color: var(--dark-color);
    }

    .modal-save-error[b-v6sc6b0st0] {
        background-color: var(--error-color);
        color: var(--background-color);
        padding: 0.75rem 1rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        width: 7rem;
        gap: 0.5rem;
    }

    .modal-save-error:hover[b-v6sc6b0st0] {
        background-color: var(--dark-color);
    }

    .modal-cancel[b-v6sc6b0st0] {
        background-color: transparent;
        color: var(--dark-color);
        padding: 0.75rem 1rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        width: 7rem;
        gap: 0.5rem;
    }

    .modal-cancel:hover[b-v6sc6b0st0] {
        background-color: var(--light-color);
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .modal[b-v6sc6b0st0] {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0);
        animation: backdropIn-b-v6sc6b0st0 .28s ease forwards;
        z-index: 999;
    }

    .modal-content[b-v6sc6b0st0] {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: auto;
        max-height: 75vh;
        overflow: auto;
        border-radius: 16px 16px 0 0;
        border: 1px solid var(--light-color);
        box-shadow: 0 -12px 32px rgba(0,0,0,.22);
        padding: 1.5rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
        transform: translateY(100%);
        animation: sheetIn-b-v6sc6b0st0 .28s cubic-bezier(.2,.7,.2,1) forwards;
        will-change: transform;
        background: var(--background-color);
    }

    .modal.closing[b-v6sc6b0st0] {
        animation: backdropOut-b-v6sc6b0st0 .22s ease forwards;
    }

    .modal.closing .modal-content[b-v6sc6b0st0] {
        animation: sheetOut-b-v6sc6b0st0 .22s cubic-bezier(.4,.2,.2,1) forwards;
    }

    @keyframes sheetIn-b-v6sc6b0st0 {
        from {
            transform: translateY(100%);
            opacity: .98;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes sheetOut-b-v6sc6b0st0 {
        from {
            transform: translateY(0);
            opacity: 1;
        }

        to {
            transform: translateY(100%);
            opacity: .98;
        }
    }

    @keyframes backdropIn-b-v6sc6b0st0 {
        from {
            background: rgba(0,0,0,0);
        }

        to {
            background: rgba(0,0,0,.35);
        }
    }

    @keyframes backdropOut-b-v6sc6b0st0 {
        from {
            background: rgba(0,0,0,.35);
        }

        to {
            background: rgba(0,0,0,0);
        }
    }

    .confirmation-icon[b-v6sc6b0st0] {
        font-size: 5rem;
        color: var(--brand);
        padding-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-message[b-v6sc6b0st0] {
        color: var(--dark-color);
        font-weight: 500;
        text-align: center;
        font-size: 20px;
        margin-bottom: 1rem;
    }

    .modal-options[b-v6sc6b0st0] {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
        width: 100%;
        gap: 1rem;
    }

    .modal-save[b-v6sc6b0st0] {
        background-color: var(--brand);
        color: var(--background-color);
        padding: 1rem 1.5rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 10rem;
        gap: 0.75rem;
    }

    .modal-save:active[b-v6sc6b0st0] {
        background-color: var(--dark-color);
    }

    .modal-save-error[b-v6sc6b0st0] {
        background-color: var(--error-color);
        color: var(--background-color);
        padding: 1rem 1.5rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 10rem;
        gap: 0.75rem;
    }

    .modal-cancel[b-v6sc6b0st0] {
        background-color: var(--light-color);
        color: var(--dark-color);
        padding: 1rem 1.5rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 10rem;
        gap: 0.75rem;
    }
}
/* /Components/Common/NavMenu.razor.rz.scp.css */
/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {

    /**************************** Nav Menu ****************************/

    .app-sidenav[b-2io2n33fra] {
        position: fixed;
        width: 220px;
        padding: 1rem;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        height: 100%;
        z-index: 1;
    }

    .nav-items[b-2io2n33fra] {
        list-style: none;
        margin: 0;
        display: grid;
        gap: 4px;
    }

    .nav-link[b-2io2n33fra] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding-left: 1rem;
        height: 3.25rem;
        border-radius: 50rem;
        color: var(--dark-color);
        text-decoration: none;
        transition: background 0.15s ease, color 0.15s ease;
        font-weight: 700;
    }

    .nav-link i[b-2io2n33fra] {
        width: 32px;
        height: 32px;
        display: grid;
        place-items: center;
        border-radius: 10px;
        font-size: 1.25rem;
    }

    .active[b-2io2n33fra] {
        color: var(--brand);
    }

    .nav-link:hover[b-2io2n33fra] {
        background: var(--light-color);
    }

    .add-saas-button[b-2io2n33fra] {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--brand);
        color: var(--background-color);
        height: 3.25rem;
        border-radius: 50rem;
        font-weight: 700;
        box-shadow: 0 8px 20px rgba(0,0,0,.25);
        outline: none;
        border: none;
        font-size: 1rem;
    }

    .add-saas-button:hover[b-2io2n33fra] {
        cursor: pointer;
        background: var(--brand-light);
    }

    :root[b-2io2n33fra] {
        --sidenav-w: 220px;
    }

    .main-with-sidenav[b-2io2n33fra] {
        margin-left: var(--sidenav-w);
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/
@media screen and (min-width: 992px) and (max-width: 1625px) {

    /**************************** Nav Menu ****************************/

    .app-sidenav[b-2io2n33fra] {
        position: fixed;
        width: 200px;
        padding: 1rem;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        height: 100%;
        z-index: 1;
    }

    .nav-items[b-2io2n33fra] {
        list-style: none;
        margin: 0;
        display: grid;
        gap: 6px;
    }

    .nav-link[b-2io2n33fra] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding-left: 0.75rem;
        height: 3rem;
        border-radius: 50rem;
        color: var(--dark-color);
        text-decoration: none;
        transition: background 0.15s ease, color 0.15s ease;
        font-size: 0.85rem;
        font-weight: 700;
    }

    .nav-link i[b-2io2n33fra] {
        width: 32px;
        height: 32px;
        display: grid;
        place-items: center;
        border-radius: 10px;
        font-size: 1.15rem;
    }

    .active[b-2io2n33fra] {
        color: var(--brand);
    }

    .nav-link:hover[b-2io2n33fra] {
        background: var(--light-color);
    }

    .add-saas-button[b-2io2n33fra] {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--brand);
        color: var(--background-color);
        height: 3rem;
        border-radius: 50rem;
        font-weight: 700;
        box-shadow: 0 8px 20px rgba(0,0,0,.25);
        outline: none;
        border: none;
        font-size: 0.85rem;
    }

    .add-saas-button:hover[b-2io2n33fra] {
        cursor: pointer;
        background: var(--brand-light);
    }

    :root[b-2io2n33fra] {
        --sidenav-w: 200px;
    }

    .main-with-sidenav[b-2io2n33fra] {
        margin-left: var(--sidenav-w);
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/
@media screen and (max-width: 991px) {

    .app-sidenav[b-2io2n33fra] {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        height: calc(75px + env(safe-area-inset-bottom));
        width: 100%;
        padding: 0 .5rem env(safe-area-inset-bottom) .5rem;
        background: var(--background-color);
        display: grid;
        align-items: center;
        gap: 0;
        z-index: 20;
        border-top: 2px solid var(--light-color);
    }

    .nav-items[b-2io2n33fra] {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        margin: 0;
        padding: 0;
        gap: 0;
        list-style-type: none;
    }

    .nav-items li[b-2io2n33fra] {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 6rem;
    }

    .nav-link[b-2io2n33fra] {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 8px 10px;
        gap: 8px;
        color: var(--dark-color);
        background: transparent;
        text-decoration: none;
    }

    .nav-link i[b-2io2n33fra] {
        font-size: 2rem;
        display: grid;
        place-items: center;
    }

    .nav-link span[b-2io2n33fra] {
        font-size: 11px;
        font-weight: 600;
        line-height: 1;
        white-space: nowrap;
    }

    .nav-link:hover[b-2io2n33fra] {
        background: var(--light-color);
    }

    .active[b-2io2n33fra] {
        color: var(--brand);
    }

    .add-saas-button[b-2io2n33fra] {
        display: none;
    }
}
/* /Components/Common/PhotoGallery.razor.rz.scp.css */
.input-label[b-4ajq0eq35s] {
    font-weight: 600;
    color: var(--dark-color);
    display: block;
}

.hint-text[b-4ajq0eq35s] {
    color: var(--medium-color);
}

.photo-grid[b-4ajq0eq35s] {
    display: grid;
}

.photo-card[b-4ajq0eq35s] {
    position: relative;
}

.cover-photo[b-4ajq0eq35s] {
    grid-column: 1 / -1;
}

.photo-card img[b-4ajq0eq35s] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.menu-btn[b-4ajq0eq35s] {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.1s, background 0.2s, color 0.2s;
    color: var(--background-color);
}

.menu-btn:hover[b-4ajq0eq35s] {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
}

.dropdown-menu[b-4ajq0eq35s] {
    position: absolute;
    right: 0;
    top: 2.25rem;
    min-width: 220px;
    background: var(--background-color);
    border: 1px solid var(--light-color);
    border-radius: 12px;
    padding: 0.35rem;
    opacity: 0;
    transform: translateY(-4px) scale(.98);
    pointer-events: none;
    transition: 0.18s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 20;
}

.dropdown-menu button[b-4ajq0eq35s] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
    color: var(--dark-color);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-menu button:hover[b-4ajq0eq35s] {
    background: var(--light-color);
}

.dropdown-menu i[b-4ajq0eq35s] {
    color: var(--brand);
}

.dropdown-menu hr[b-4ajq0eq35s] {
    border: 0;
    height: 1px;
    background: var(--light-color);
    margin: 0.35rem 0;
}

.menu-btn.open .dropdown-menu[b-4ajq0eq35s] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.upload-trigger[b-4ajq0eq35s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
    background: transparent;
    cursor: pointer;
    gap: 0.5rem;
    color: #717171;
    transition: all 0.2s;
}

.upload-trigger:hover[b-4ajq0eq35s] {
    border-color: #222;
    color: #222;
    background: #fcfcfc;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .input-label[b-4ajq0eq35s] {
        font-size: 1.5rem;
    }

    .hint-text[b-4ajq0eq35s] {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .photo-grid[b-4ajq0eq35s] {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .photo-card[b-4ajq0eq35s] {
        min-height: 180px;
    }

    .cover-photo[b-4ajq0eq35s] {
        min-height: 300px;
    }

    .menu-btn[b-4ajq0eq35s] {
        width: 32px;
        height: 32px;
    }

    .dropdown-menu button[b-4ajq0eq35s] {
        font-size: 0.85rem;
    }

    .upload-trigger i[b-4ajq0eq35s] {
        font-size: 1.5rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .input-label[b-4ajq0eq35s] {
        font-size: 1.3rem;
    }

    .hint-text[b-4ajq0eq35s] {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .photo-grid[b-4ajq0eq35s] {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .photo-card[b-4ajq0eq35s] {
        min-height: 150px;
    }

    .cover-photo[b-4ajq0eq35s] {
        min-height: 250px;
    }

    .menu-btn[b-4ajq0eq35s] {
        width: 30px;
        height: 30px;
    }

    .dropdown-menu button[b-4ajq0eq35s] {
        font-size: 0.85rem;
    }

    .upload-trigger i[b-4ajq0eq35s] {
        font-size: 1.3rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .input-label[b-4ajq0eq35s] {
        font-size: 1.15rem;
    }

    .hint-text[b-4ajq0eq35s] {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .photo-grid[b-4ajq0eq35s] {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .photo-card[b-4ajq0eq35s] {
        min-height: 110px;
    }

    .cover-photo[b-4ajq0eq35s] {
        min-height: 180px;
    }

    .menu-btn[b-4ajq0eq35s] {
        width: 34px;
        height: 34px;
    }

    .dropdown-menu button[b-4ajq0eq35s] {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    .upload-trigger i[b-4ajq0eq35s] {
        font-size: 1.25rem;
    }

    .upload-trigger span[b-4ajq0eq35s] {
        font-size: 0.85rem;
    }
}
/* /Components/Common/Privacy.razor.rz.scp.css */
/**************** Content ****************/

main[b-srd3akya9u] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--background-color);
}

.policy[b-srd3akya9u] {
    max-width: 860px;
    margin-top: 120px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 8vh;
    padding: 0 24px 0px;
    color: var(--dark-color);
    line-height: 1.6;
}

.policy h1[b-srd3akya9u] {
    font-size: 2rem;
    margin: 0 0 8px;
    color: var(--dark-color);
}

.policy .updated[b-srd3akya9u] {
    color: var(--dark-color);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.policy h2[b-srd3akya9u] {
    font-size: 1.25rem;
    margin: 28px 0 8px;
    color: var(--dark-color);
}

.policy h3[b-srd3akya9u] {
    font-size: 1.05rem;
    margin: 18px 0 6px;
    color: var(--dark-color);
}

.policy p[b-srd3akya9u] {
    margin: 8px 0 12px;
}

.policy ul[b-srd3akya9u] {
    margin: 8px 0 16px 18px;
}

.policy li[b-srd3akya9u] {
    margin: 6px 0;
}

.policy blockquote[b-srd3akya9u] {
    background: var(--light-color);
    border-left: 4px solid var(--brand);
    padding: 12px 14px;
    border-radius: 6px;
    color: var(--dark-color);
}

a[b-srd3akya9u] {
    color: var(--dark-color);
}

a:hover[b-srd3akya9u] {
    color: var(--brand);
}
/* /Components/Common/ProductAdminItem.razor.rz.scp.css */
.listing-card[b-zpxt4qnvyk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: fit-content;
    border-radius: var(--border-radius);
    background: transparent;
    transition: background 0.2s ease;
}

.listing-card:hover[b-zpxt4qnvyk] {
    cursor: pointer;
    background: var(--light-color);
}

.graph-group[b-zpxt4qnvyk] {
    flex-shrink: 0;
}

.listing-group[b-zpxt4qnvyk] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0;
}

.listing-title[b-zpxt4qnvyk] {
    color: var(--dark-color);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sub-listings-group[b-zpxt4qnvyk] {
    display: grid;
    width: 100%;
    white-space: nowrap;
}

.stat-item[b-zpxt4qnvyk] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--medium-color);
}

.stat-item i[b-zpxt4qnvyk] {
    color: var(--brand-light);
}

.stat-label[b-zpxt4qnvyk] {
    font-weight: 400;
}

.stat-value[b-zpxt4qnvyk] {
    font-weight: 700;
    color: var(--dark-color);
}

.stat-badge[b-zpxt4qnvyk] {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--light-color);
    border-radius: 20px;
    width: fit-content;
}

.stat-badge i[b-zpxt4qnvyk] {
    color: var(--brand);
}

.stat-badge .stat-label[b-zpxt4qnvyk] {
    color: var(--medium-color);
}

.stat-badge .stat-value[b-zpxt4qnvyk] {
    font-weight: 600;
    color: var(--dark-color);
}

.listing-options[b-zpxt4qnvyk] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.actions-buttons-group[b-zpxt4qnvyk] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-button[b-zpxt4qnvyk] {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dark-color);
    transition: background 0.2s ease;
}

.action-button:hover[b-zpxt4qnvyk] {
    background: rgba(0,0,0,0.1);
    cursor: pointer;
}

.dropdown-popup[b-zpxt4qnvyk] {
    position: absolute;
    top: 100%;
    right: 0;
    width: 12rem;
    border-radius: var(--border-radius);
    background-color: var(--background-color);
    z-index: 10;
    padding: 0.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.dropdown-option[b-zpxt4qnvyk] {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 10px;
    color: var(--dark-color);
    font-weight: 700;
    gap: 0.75rem;
    transition: background 0.2s ease;
}

.dropdown-option:hover[b-zpxt4qnvyk] {
    background: var(--light-color);
}

.dropdown-icon[b-zpxt4qnvyk] {
    color: var(--brand);
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .listing-card[b-zpxt4qnvyk] {
        padding: 1rem;
        margin-bottom: 0.5rem;
        gap: 1rem;
    }

    .listing-group[b-zpxt4qnvyk] {
        margin-left: 0.75rem;
    }

    .listing-title[b-zpxt4qnvyk] {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .sub-listings-group[b-zpxt4qnvyk] {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .stat-item[b-zpxt4qnvyk] {
        font-size: 0.85rem;
    }

    .stat-badge[b-zpxt4qnvyk] {
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    .action-button[b-zpxt4qnvyk] {
        width: 2.5rem;
        height: 2.5rem;
        margin: 0 0.25rem;
    }

    .action-icon[b-zpxt4qnvyk] {
        font-size: 1rem;
    }

    .dropdown-option[b-zpxt4qnvyk] {
        font-size: 0.85rem;
    }

    .dropdown-icon[b-zpxt4qnvyk] {
        font-size: 1.5rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/
@media screen and (min-width: 992px) and (max-width: 1625px) {
    .listing-card[b-zpxt4qnvyk] {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
        gap: 0.75rem;
    }

    .listing-group[b-zpxt4qnvyk] {
        margin-left: 0.5rem;
    }

    .listing-title[b-zpxt4qnvyk] {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .sub-listings-group[b-zpxt4qnvyk] {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .stat-item[b-zpxt4qnvyk] {
        font-size: 0.8rem;
    }

    .stat-badge[b-zpxt4qnvyk] {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .action-button[b-zpxt4qnvyk] {
        width: 2.25rem;
        height: 2.25rem;
        margin: 0 0.25rem;
    }

    .action-icon[b-zpxt4qnvyk] {
        font-size: 0.95rem;
    }

    .dropdown-popup[b-zpxt4qnvyk] {
        width: 11rem;
    }

    .dropdown-option[b-zpxt4qnvyk] {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
    }

    .dropdown-icon[b-zpxt4qnvyk] {
        font-size: 1.25rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .listing-card[b-zpxt4qnvyk] {
        padding: 1rem 0.5rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .listing-group[b-zpxt4qnvyk] {
        margin-left: 0.5rem;
    }

    .listing-title[b-zpxt4qnvyk] {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .sub-listings-group[b-zpxt4qnvyk] {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item[b-zpxt4qnvyk] {
        font-size: 0.75rem;
    }

    .stat-badge[b-zpxt4qnvyk] {
        display: none;
    }

    .action-button[b-zpxt4qnvyk] {
        width: 2rem;
        height: 2rem;
        margin: 0;
    }

    .action-icon[b-zpxt4qnvyk] {
        font-size: 0.85rem;
    }

    .dropdown-popup[b-zpxt4qnvyk] {
        width: 11rem;
    }

    .dropdown-option[b-zpxt4qnvyk] {
        font-size: 0.8rem;
    }

    .dropdown-icon[b-zpxt4qnvyk] {
        font-size: 1.15rem;
    }
}
/* /Components/Common/ProductCard.razor.rz.scp.css */
.product-card[b-xbyp23xlwp] {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    background: transparent;
    transition: opacity 0.2s;
}

.product-card:hover[b-xbyp23xlwp] {
    opacity: 0.95;
}

.product-card-image-wrapper[b-xbyp23xlwp] {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: var(--light-color);
}

.product-card-image-wrapper img[b-xbyp23xlwp] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.product-card:hover .product-card-image-wrapper img[b-xbyp23xlwp] {
    transform: scale(1.05);
}

.product-card-fallback[b-xbyp23xlwp] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    color: #fff;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
}

.product-card-badge[b-xbyp23xlwp] {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--dark-color);
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-card-header[b-xbyp23xlwp] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.product-card-title[b-xbyp23xlwp] {
    margin: 0;
    font-weight: 600;
    color: var(--dark-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-rating[b-xbyp23xlwp] {
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.product-card-subtitle[b-xbyp23xlwp] {
    color: var(--medium-color);
    margin: 2px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .product-card-image-wrapper[b-xbyp23xlwp] {
        margin-bottom: 0.5rem;
    }

    .product-card-fallback[b-xbyp23xlwp] {
        font-size: 1.5rem;
        padding: 1rem;
    }

    .product-card-badge[b-xbyp23xlwp] {
        top: 12px;
        left: 12px;
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .product-card-title[b-xbyp23xlwp] {
        font-size: 1.05rem;
    }

    .product-card-rating[b-xbyp23xlwp] {
        font-size: 0.95rem;
    }

    .product-card-subtitle[b-xbyp23xlwp] {
        font-size: 0.95rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .product-card-image-wrapper[b-xbyp23xlwp] {
        margin-bottom: 0.5rem;
    }

    .product-card-fallback[b-xbyp23xlwp] {
        font-size: 1.35rem;
        padding: 0.85rem;
    }

    .product-card-badge[b-xbyp23xlwp] {
        top: 10px;
        left: 10px;
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .product-card-title[b-xbyp23xlwp] {
        font-size: 1rem;
    }

    .product-card-rating[b-xbyp23xlwp] {
        font-size: 0.9rem;
    }

    .product-card-subtitle[b-xbyp23xlwp] {
        font-size: 0.9rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .product-card-image-wrapper[b-xbyp23xlwp] {
        margin-bottom: 0.5rem;
    }

    .product-card-fallback[b-xbyp23xlwp] {
        font-size: 1.25rem;
        padding: 0.75rem;
    }

    .product-card-badge[b-xbyp23xlwp] {
        top: 8px;
        left: 8px;
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .product-card-title[b-xbyp23xlwp] {
        font-size: 1rem;
    }

    .product-card-rating[b-xbyp23xlwp] {
        font-size: 0.85rem;
    }

    .product-card-subtitle[b-xbyp23xlwp] {
        font-size: 0.85rem;
    }
}
/* /Components/Common/SearchPill.razor.rz.scp.css */
.dropdown-backdrop[b-ob1j6d1bkl] {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: transparent;
}

.search-pill[b-ob1j6d1bkl] {
    display: flex;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-color);
    width: 100%;
    transition: box-shadow 0.25s;
    position: relative;
    z-index: 100;
    box-sizing: border-box;
}

.search-pill:hover[b-ob1j6d1bkl] {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.search-block[b-ob1j6d1bkl] {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
    position: relative;
    border-radius: var(--border-radius);
    transition: background 0.25s;
    cursor: pointer;
    box-sizing: border-box;
}

.search-block:hover[b-ob1j6d1bkl] {
    background: var(--light-color);
}

.search-block label[b-ob1j6d1bkl] {
    font-weight: 700;
    color: var(--dark-color);
    cursor: pointer;
}

.search-block input[b-ob1j6d1bkl] {
    border: none;
    background: transparent;
    color: var(--dark-color);
    outline: none;
    padding: 0;
    width: 100%;
    text-overflow: ellipsis;
}

.search-block input[b-ob1j6d1bkl]::placeholder {
    color: var(--medium-color);
}

.pill-divider[b-ob1j6d1bkl] {
    background-color: #e5e7eb;
}

.search-pill-btn[b-ob1j6d1bkl] {
    background: var(--brand);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.1s;
}

.search-pill-btn:hover[b-ob1j6d1bkl] {
    background: var(--brand-light);
}

.search-pill-btn:active[b-ob1j6d1bkl] {
    transform: scale(0.96);
}

.custom-dropdown[b-ob1j6d1bkl] {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    margin-top: 12px;
    padding: 0.5rem;
    overflow-y: auto;
    z-index: 200;
}

.dropdown-item[b-ob1j6d1bkl] {
    color: var(--dark-color);
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.dropdown-item:hover[b-ob1j6d1bkl] {
    background: var(--light-color);
}

.item-count[b-ob1j6d1bkl] {
    color: var(--medium-color);
    font-weight: 500;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .search-pill[b-ob1j6d1bkl] {
        flex-direction: row;
        align-items: center;
        border-radius: 9999px;
        padding: 0.5rem 0.5rem 0.5rem 2rem;
        max-width: 900px;
    }

    .search-block[b-ob1j6d1bkl] {
        padding: 0.5rem 1rem;
    }

    .search-block label[b-ob1j6d1bkl] {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }

    .search-block input[b-ob1j6d1bkl] {
        font-size: 0.95rem;
    }

    .pill-divider[b-ob1j6d1bkl] {
        height: 32px;
        width: 1px;
        margin: 0;
    }

    .search-pill-btn[b-ob1j6d1bkl] {
        border-radius: 9999px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin-left: 0.5rem;
        width: auto;
    }

    .custom-dropdown[b-ob1j6d1bkl] {
        max-height: 250px;
    }

    .dropdown-item[b-ob1j6d1bkl] {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .item-count[b-ob1j6d1bkl] {
        font-size: 0.85rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/
@media screen and (min-width: 992px) and (max-width: 1625px) {
    .search-pill[b-ob1j6d1bkl] {
        flex-direction: row;
        align-items: center;
        border-radius: 9999px;
        padding: 0.4rem 0.4rem 0.4rem 1.5rem;
        max-width: 750px;
    }

    .search-block[b-ob1j6d1bkl] {
        padding: 0.4rem 0.8rem;
    }

    .search-block label[b-ob1j6d1bkl] {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .search-block input[b-ob1j6d1bkl] {
        font-size: 0.9rem;
    }

    .pill-divider[b-ob1j6d1bkl] {
        height: 28px;
        width: 1px;
        margin: 0;
    }

    .search-pill-btn[b-ob1j6d1bkl] {
        border-radius: 9999px;
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
        margin-left: 0.5rem;
        width: auto;
    }

    .custom-dropdown[b-ob1j6d1bkl] {
        max-height: 220px;
    }

    .dropdown-item[b-ob1j6d1bkl] {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .item-count[b-ob1j6d1bkl] {
        font-size: 0.8rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .search-pill[b-ob1j6d1bkl] {
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
        padding: 1rem;
        max-width: 100%;
    }

    .search-block[b-ob1j6d1bkl] {
        padding: 0.5rem;
        width: 100%;
    }

    .search-block label[b-ob1j6d1bkl] {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    .search-block input[b-ob1j6d1bkl] {
        font-size: 16px;
    }

    .pill-divider[b-ob1j6d1bkl] {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }

    .search-pill-btn[b-ob1j6d1bkl] {
        border-radius: 12px;
        padding: 1rem;
        font-size: 1rem;
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }

    .custom-dropdown[b-ob1j6d1bkl] {
        max-height: 200px;
    }

    .dropdown-item[b-ob1j6d1bkl] {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .item-count[b-ob1j6d1bkl] {
        font-size: 0.8rem;
    }
}
/* /Components/Common/StatisticsCard.razor.rz.scp.css */
/**************************************/
/*                                    */
/*        Shared / Mobile-first       */
/*                                    */
/**************************************/

.statistics-card[b-xrati0v04w] {
    width: 100%;
    height: 100px;
    background-color: transparent;
    padding: 1rem;
    border-radius: 15px 15px 0 0;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.statistics-label-group[b-xrati0v04w] {
    display: flex;
    flex-direction: row;
    margin: 0.5rem 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 2;
}

.statistics-data[b-xrati0v04w] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    font-weight: 700;
    z-index: 2;
    color: var(--dark-color);
    white-space: nowrap;
}

.statistics-icon[b-xrati0v04w] {
    color: var(--brand);
    font-size: 5rem;
    position: absolute;
    opacity: 0.25;
    z-index: 1;
}

.statistics-card-description[b-xrati0v04w] {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    white-space: nowrap;
}

.graph-group[b-xrati0v04w] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

/**************************************/
/*                                    */
/*               Laptop               */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .statistics-card[b-xrati0v04w] {
        width: 150px;
        height: 85px;
        margin-right: 0.5rem;
    }

    .statistics-label-group[b-xrati0v04w] {
        margin: 0.35rem 0;
    }

    .statistics-data[b-xrati0v04w] {
        font-size: 30px;
    }

    .statistics-icon[b-xrati0v04w] {
        font-size: 4rem;
    }

    .statistics-card-description[b-xrati0v04w] {
        font-size: 15px;
    }
}

/**************************************/
/*                                    */
/*               Desktop              */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .statistics-card[b-xrati0v04w] {
        width: 185px;
        height: 100px;
        margin-right: 0.75rem;
    }
}
/* /Components/Common/TermsOfService.razor.rz.scp.css */
/**************** Content ****************/

main[b-c55wquc7j6] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--background-color);
}

.policy[b-c55wquc7j6] {
    max-width: 860px;
    margin-top: 120px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 8vh;
    padding: 0 24px 0px;
    color: var(--dark-color);
    line-height: 1.6;
}

.policy h1[b-c55wquc7j6] {
    font-size: 2rem;
    margin: 0 0 8px;
    color: var(--dark-color);
}

.policy .updated[b-c55wquc7j6] {
    color: var(--dark-color);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.policy h2[b-c55wquc7j6] {
    font-size: 1.25rem;
    margin: 28px 0 8px;
    color: var(--dark-color);
}

.policy h3[b-c55wquc7j6] {
    font-size: 1.05rem;
    margin: 18px 0 6px;
    color: var(--dark-color);
}

.policy p[b-c55wquc7j6] {
    margin: 8px 0 12px;
}

.policy ul[b-c55wquc7j6] {
    margin: 8px 0 16px 18px;
}

.policy li[b-c55wquc7j6] {
    margin: 6px 0;
}

.policy blockquote[b-c55wquc7j6] {
    background: var(--light-color);
    border-left: 4px solid var(--brand);
    padding: 12px 14px;
    border-radius: 6px;
    color: var(--dark-color);
}

a[b-c55wquc7j6] {
    color: var(--dark-color);
}

a:hover[b-c55wquc7j6] {
    color: var(--brand);
}
/* /Components/Common/TextAreaInput.razor.rz.scp.css */
.input-label[b-mp2twpm3tg] {
    font-weight: 600;
    color: var(--dark-color);
    display: block;
}

.hint-text[b-mp2twpm3tg] {
    color: var(--medium-color);
}

.long-text-input[b-mp2twpm3tg] {
    width: 100%;
    background: var(--light-color);
    color: var(--dark-color);
    text-align: left;
    font-weight: 500;
    border-radius: var(--border-radius);
    resize: none;
    border: 2px solid transparent;
    outline: none;
    box-sizing: border-box;
}

.long-text-input[b-mp2twpm3tg]::placeholder {
    color: var(--dark-color);
    opacity: 0.5;
}

.textarea-footer[b-mp2twpm3tg] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 6px;
}

.error-slot[b-mp2twpm3tg] {
    flex: 1;
}

.error-text[b-mp2twpm3tg] {
    color: var(--brand);
    font-weight: 500;
    margin: 0;
}

.char-counter[b-mp2twpm3tg] {
    color: var(--medium-color);
    white-space: nowrap;
    margin-left: 15px;
    transition: color 0.2s ease;
}

.char-counter.at-limit[b-mp2twpm3tg] {
    color: var(--brand);
    font-weight: 600;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .input-label[b-mp2twpm3tg] {
        font-size: 1.5rem;
    }

    .hint-text[b-mp2twpm3tg] {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .long-text-input[b-mp2twpm3tg] {
        font-size: 1rem;
        padding: 0.75rem;
        height: 15rem;
    }

    .error-text[b-mp2twpm3tg] {
        font-size: 0.85rem;
    }

    .textarea-footer[b-mp2twpm3tg] {
        font-size: 0.85rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .input-label[b-mp2twpm3tg] {
        font-size: 1.3rem;
    }

    .hint-text[b-mp2twpm3tg] {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .long-text-input[b-mp2twpm3tg] {
        font-size: 1rem;
        padding: 0.75rem;
        height: 12rem;
    }

    .error-text[b-mp2twpm3tg] {
        font-size: 0.85rem;
    }

    .textarea-footer[b-mp2twpm3tg] {
        font-size: 0.85rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .input-label[b-mp2twpm3tg] {
        font-size: 1.15rem;
    }

    .hint-text[b-mp2twpm3tg] {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .long-text-input[b-mp2twpm3tg] {
        font-size: 16px;
        padding: 0.65rem;
        height: 10rem;
    }

    .error-text[b-mp2twpm3tg] {
        font-size: 0.8rem;
    }

    .textarea-footer[b-mp2twpm3tg] {
        font-size: 0.8rem;
    }
}
/* /Components/Common/TextInput.razor.rz.scp.css */
.input-label[b-d6n6n7tj5r] {
    font-weight: 600;
    color: var(--dark-color);
    display: block;
}

.hint-text[b-d6n6n7tj5r] {
    color: var(--medium-color);
    margin-bottom: 1rem;
}

.text-input[b-d6n6n7tj5r] {
    width: 100%;
    border: none;
    outline: none;
    background: var(--light-color);
    color: var(--dark-color);
    border-radius: var(--border-radius);
    box-sizing: border-box;
}

.text-input[b-d6n6n7tj5r]::placeholder {
    color: var(--dark-color);
    opacity: 0.5;
}

.error-text[b-d6n6n7tj5r] {
    color: var(--brand);
    font-weight: 500;
    margin: 0;
    margin-top: 0.25rem;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .input-label[b-d6n6n7tj5r] {
        font-size: 1.5rem;
    }

    .hint-text[b-d6n6n7tj5r] {
        font-size: 1rem;
    }

    .text-input[b-d6n6n7tj5r] {
        font-size: 1rem;
        padding: 0.85rem;
    }

    .error-text[b-d6n6n7tj5r] {
        font-size: 0.85rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .input-label[b-d6n6n7tj5r] {
        font-size: 1.3rem;
    }

    .hint-text[b-d6n6n7tj5r] {
        font-size: 0.95rem;
    }

    .text-input[b-d6n6n7tj5r] {
        font-size: 1rem;
        padding: 0.75rem;
    }

    .error-text[b-d6n6n7tj5r] {
        font-size: 0.85rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .input-label[b-d6n6n7tj5r] {
        font-size: 1.15rem;
    }

    .hint-text[b-d6n6n7tj5r] {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .text-input[b-d6n6n7tj5r] {
        font-size: 16px;
        padding: 0.65rem;
    }

    .error-text[b-d6n6n7tj5r] {
        font-size: 0.8rem;
    }
}
/* /Components/Common/TrueNorthSaaSLogo.razor.rz.scp.css */
/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .brand-logo[b-fntozl37u9] {
        position: fixed;
        top: 0;
        left: 0;
        padding: 1.5rem;
        display: flex;
        flex-direction: row;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        z-index: 2;
        align-items: center;
        justify-content: center;
    }

    .brand-icon[b-fntozl37u9] {
        color: var(--brand);
        font-size: 1.75rem;
        margin-right: 0.5rem;
    }

    .brand-name[b-fntozl37u9] {
        font-weight: 700;
        font-size: 1.35rem;
    }

    .primary[b-fntozl37u9] {
        color: var(--brand);
    }

    .secondary[b-fntozl37u9] {
        color: var(--dark-color);
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/
@media screen and (min-width: 992px) and (max-width: 1625px) {
    .brand-logo[b-fntozl37u9] {
        position: fixed;
        top: 0;
        left: 0;
        padding: 1.5rem;
        display: flex;
        flex-direction: row;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        z-index: 2;
        align-items: center;
        justify-content: center;
    }

    .brand-icon[b-fntozl37u9] {
        color: var(--brand);
        font-size: 1.5rem;
        margin-right: 0.35rem;
    }

    .brand-name[b-fntozl37u9] {
        font-weight: 700;
        font-size: 1rem;
    }

    .primary[b-fntozl37u9] {
        color: var(--brand);
    }

    .secondary[b-fntozl37u9] {
        color: var(--dark-color);
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/
@media screen and (max-width: 991px) {
    .brand-logo[b-fntozl37u9] {
        position: fixed;
        top: 0;
        left: 0;
        padding: 20px 12px;
        display: flex;
        flex-direction: row;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        z-index: 2;
        align-items: center;
        justify-content: center;
    }

    .brand-icon[b-fntozl37u9] {
        color: var(--brand);
        font-size: 1.5rem;
        margin-right: 0.35rem;
    }

    .brand-name[b-fntozl37u9] {
        font-weight: 700;
        font-size: 1rem;
    }

    .primary[b-fntozl37u9] {
        color: var(--brand);
    }

    .secondary[b-fntozl37u9] {
        color: var(--dark-color);
    }
}
/* /Components/Common/UnderConstruction.razor.rz.scp.css */
/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1441px) {
    .content[b-53vepjfs0o] {
        background: var(--background-color);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        width: 100%;
    }

    .construction-zone[b-53vepjfs0o] {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .construction-icon[b-53vepjfs0o] {
        font-size: 8rem;
        color: var(--brand);
    }

    .construction-title[b-53vepjfs0o] {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark-color);
    }

    .construction-subtitle[b-53vepjfs0o] {
        font-size: 1rem;
        font-weight: 500;
        color: var(--dark-color);
        opacity: 0.5;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1440px) {
    .content[b-53vepjfs0o] {
        background: var(--background-color);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        width: 100%;
    }

    .construction-zone[b-53vepjfs0o] {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .construction-icon[b-53vepjfs0o] {
        font-size: 8rem;
        color: var(--brand);
    }

    .construction-title[b-53vepjfs0o] {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark-color);
    }

    .construction-subtitle[b-53vepjfs0o] {
        font-size: 1rem;
        font-weight: 500;
        color: var(--dark-color);
        opacity: 0.5;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .content[b-53vepjfs0o] {
        background: var(--background-color);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        width: 100%;
    }

    .construction-zone[b-53vepjfs0o] {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .construction-icon[b-53vepjfs0o] {
        font-size: 8rem;
        color: var(--brand);
    }

    .construction-title[b-53vepjfs0o] {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark-color);
    }

    .construction-subtitle[b-53vepjfs0o] {
        font-size: 1rem;
        font-weight: 500;
        color: var(--dark-color);
        opacity: 0.5;
    }
}
/* /Components/Common/UserMenu.razor.rz.scp.css */
/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {

    /**************************** User Menu ****************************/

    .user-menu[b-offets92ia] {
        position: relative;
        z-index: 10;
    }

    .user-trigger[b-offets92ia] {
        display: flex;
        align-items: center;
        gap: .5rem;
        padding: .35rem .6rem;
        background: var(--background-color);
        border: 1px solid var(--light-color);
        border-radius: 50rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        color: var(--dark-color);
        cursor: pointer;
    }

    .user-trigger:hover[b-offets92ia] {
        background: var(--light-color);
        transition: 0.25s;
    }

    .user-name[b-offets92ia] {
        font-weight: 600;
    }

    .avatar[b-offets92ia] {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        overflow: hidden;
        color: var(--background-color);
        font-weight: 700;
        font-size: 1rem;
        background: var(--brand);
    }

    .avatar img[b-offets92ia] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .avatar img + .initials[b-offets92ia] {
        display: none;
    }

    .caret[b-offets92ia] {
        width: 1rem;
        height: 1rem;
        color: var(--dark-color);
    }

    .menu[b-offets92ia] {
        position: absolute;
        right: 0;
        top: 3rem;
        min-width: 220px;
        background: var(--background-color);
        border: 1px solid var(--light-color);
        border-radius: 12px;
        box-shadow: var(--shadow-color);
        padding: 0.35rem;
        opacity: 0;
        transform: translateY(-4px) scale(.98);
        pointer-events: none;
        transition: 0.18s ease;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        z-index: 20;
    }

    .menu a[b-offets92ia], .menu button[b-offets92ia] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.5rem 0.6rem;
        border-radius: 8px;
        color: var(--dark-color);
        text-decoration: none;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 0.85rem;
    }

    .menu a:hover[b-offets92ia], .menu button:hover[b-offets92ia] {
        background: var(--light-color);
    }

    .menu i[b-offets92ia] {
        color: var(--brand);
    }

    .menu hr[b-offets92ia] {
        border: 0;
        height: 1px;
        background: var(--light-color);
        margin: 0.35rem 0;
    }

    .user-menu.open .menu[b-offets92ia] {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .user-menu .caret[b-offets92ia] {
        transition: transform 0.18s ease;
    }

    .user-menu.open .user-trigger .caret[b-offets92ia] {
        transform: rotate(180deg);
    }

    .menu-backdrop[b-offets92ia] {
        position: fixed;
        inset: 0;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
        z-index: 15;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {

    /**************************** User Menu ****************************/

    .user-menu[b-offets92ia] {
        position: relative;
        z-index: 10;
    }

    .user-trigger[b-offets92ia] {
        display: flex;
        align-items: center;
        gap: .5rem;
        padding: .35rem .6rem;
        background: var(--background-color);
        border: 1px solid var(--light-color);
        border-radius: 50rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        color: var(--dark-color);
        cursor: pointer;
    }

    .user-trigger:hover[b-offets92ia] {
        background: var(--light-color);
        transition: 0.25s;
    }

    .user-name[b-offets92ia] {
        font-weight: 600;
    }

    .avatar[b-offets92ia] {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        overflow: hidden;
        color: var(--background-color);
        font-weight: 700;
        font-size: 1rem;
        background: var(--brand);
    }

    .avatar img[b-offets92ia] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .avatar img + .initials[b-offets92ia] {
        display: none;
    }

    .caret[b-offets92ia] {
        width: 1rem;
        height: 1rem;
        color: var(--dark-color);
    }

    .menu[b-offets92ia] {
        position: absolute;
        right: 0;
        top: 3rem;
        min-width: 220px;
        background: var(--background-color);
        border: 1px solid var(--light-color);
        border-radius: 12px;
        box-shadow: var(--shadow-color);
        padding: 0.35rem;
        opacity: 0;
        transform: translateY(-4px) scale(.98);
        pointer-events: none;
        transition: 0.18s ease;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        z-index: 20;
    }

    .menu a[b-offets92ia], .menu button[b-offets92ia] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.5rem 0.6rem;
        border-radius: 8px;
        color: var(--dark-color);
        text-decoration: none;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 0.85rem;
    }

    .menu a:hover[b-offets92ia], .menu button:hover[b-offets92ia] {
        background: var(--light-color);
    }

    .menu i[b-offets92ia] {
        color: var(--brand);
    }

    .menu hr[b-offets92ia] {
        border: 0;
        height: 1px;
        background: var(--light-color);
        margin: 0.35rem 0;
    }

    .user-menu.open .menu[b-offets92ia] {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .user-menu .caret[b-offets92ia] {
        transition: transform 0.18s ease;
    }

    .user-menu.open .user-trigger .caret[b-offets92ia] {
        transform: rotate(180deg);
    }

    .menu-backdrop[b-offets92ia] {
        position: fixed;
        inset: 0;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
        z-index: 15;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {

    .user-menu[b-offets92ia] {
        position: relative;
        z-index: 30;
    }

    .user-trigger[b-offets92ia] {
        display: flex;
        align-items: center;
        gap: .5rem;
        padding: .35rem .6rem;
        background: var(--background-color);
        border: 1px solid var(--light-color);
        border-radius: 50rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        color: var(--dark-color);
        cursor: pointer;
    }

    .user-trigger:hover[b-offets92ia] {
        background: var(--light-color);
        transition: .25s;
    }

    .user-name[b-offets92ia] {
        font-weight: 600;
    }

    .avatar[b-offets92ia] {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        overflow: hidden;
        color: var(--background-color);
        font-weight: 700;
        font-size: 1rem;
        background: var(--brand);
    }

    .avatar img[b-offets92ia] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .avatar img + .initials[b-offets92ia] {
        display: none;
    }

    .caret[b-offets92ia] {
        width: 1rem;
        height: 1rem;
        color: var(--dark-color);
    }

    .user-menu .menu-backdrop[b-offets92ia] {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0);
        border: 0;
        padding: 0;
        margin: 0;
        z-index: 39;
        opacity: 0;
        pointer-events: none;
        transition: opacity 200ms linear;
    }

    .user-menu.open .menu-backdrop[b-offets92ia] {
        opacity: .35;
        pointer-events: auto;
    }

    .menu[b-offets92ia] {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        min-width: 0;
        background: var(--background-color);
        border: 1px solid var(--light-color);
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -12px 32px rgba(0,0,0,.22);
        padding: .5rem;
        max-height: 70vh;
        overflow: auto;
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 200ms cubic-bezier(.33,.00,.67,.33), opacity 180ms linear;
        z-index: 40;
        will-change: transform, opacity;
        contain: layout paint;
        /* iOS safe area */
        padding-bottom: calc(.75rem + env(safe-area-inset-bottom));
    }

    .user-menu.open .menu[b-offets92ia] {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        transition: transform 240ms cubic-bezier(.22,1,.36,1), opacity 200ms linear;
    }

    .menu a[b-offets92ia],
    .menu button[b-offets92ia] {
        display: flex;
        align-items: center;
        gap: .5rem;
        width: 100%;
        padding: .75rem .75rem;
        border-radius: 10px;
        color: var(--dark-color);
        text-decoration: none;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1rem;
    }

    .menu a:hover[b-offets92ia],
    .menu button:hover[b-offets92ia] {
        background: var(--light-color);
    }

    .menu i[b-offets92ia] {
        color: var(--brand);
    }

    .menu hr[b-offets92ia] {
        border: 0;
        height: 1px;
        background: var(--light-color);
        margin: .35rem 0;
    }

    @media (prefers-reduced-motion: reduce) {
        .user-menu .menu[b-offets92ia],
        .user-menu.open .menu[b-offets92ia] {
            transition: none !important;
            transform: none !important;
            opacity: 1 !important;
        }

        .user-menu .menu-backdrop[b-offets92ia],
        .user-menu.open .menu-backdrop[b-offets92ia] {
            transition: none !important;
            opacity: .35 !important;
            pointer-events: auto;
        }
    }

}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-f8reitd4w4] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-f8reitd4w4] {
    flex: 1;
}

.sidebar[b-f8reitd4w4] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-f8reitd4w4] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-f8reitd4w4]  a, .top-row[b-f8reitd4w4]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-f8reitd4w4]  a:hover, .top-row[b-f8reitd4w4]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-f8reitd4w4]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-f8reitd4w4] {
        justify-content: space-between;
    }

    .top-row[b-f8reitd4w4]  a, .top-row[b-f8reitd4w4]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-f8reitd4w4] {
        flex-direction: row;
    }

    .sidebar[b-f8reitd4w4] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-f8reitd4w4] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-f8reitd4w4]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-f8reitd4w4], article[b-f8reitd4w4] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-f8reitd4w4] {
    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-f8reitd4w4] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/AdminClaims.razor.rz.scp.css */
.main-container[b-xusk6y4au4] {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: auto;
    width: 100%;
}

.admin-header[b-xusk6y4au4] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge[b-xusk6y4au4] {
    background-color: var(--brand);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.split-layout[b-xusk6y4au4] {
    display: grid;
    gap: 1rem;
}

.master-list[b-xusk6y4au4] {
    overflow-y: auto;
    background-color: var(--sidebar-bg);
    border-radius: var(--border-radius);
}

.list-item[b-xusk6y4au4] {
    cursor: pointer;
    transition: background 0.2s ease;
    border-radius: var(--border-radius);
}

.list-item:hover[b-xusk6y4au4], .list-item.active[b-xusk6y4au4] {
    background: var(--light-color);
}

.item-header[b-xusk6y4au4] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.date[b-xusk6y4au4], .item-sub[b-xusk6y4au4] {
    color: var(--medium-color);
}

.detail-view[b-xusk6y4au4] {
    overflow-y: auto;
    background-color: var(--main-bg);
}

.detail-card[b-xusk6y4au4] {
    background-color: var(--card-bg);
    border-radius: 12px;
}

.detail-section h3[b-xusk6y4au4] {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--medium-color);
}

.proof-box[b-xusk6y4au4], .info-box[b-xusk6y4au4] {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.proof-link[b-xusk6y4au4] {
    color: var(--dark-color);
    font-weight: 500;
    word-break: break-all; 
}

.action-footer[b-xusk6y4au4] {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.btn-success[b-xusk6y4au4], .btn-danger[b-xusk6y4au4] {
    color: white;
    border: none;
    border-radius: 50rem;
    transition: background 0.2s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn-success[b-xusk6y4au4] { background-color: #10b981; }
.btn-success:hover[b-xusk6y4au4] { background-color: #059669; }

.btn-danger[b-xusk6y4au4] { background-color: #ef4444; }
.btn-danger:hover[b-xusk6y4au4] { background-color: #dc2626; }

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .main-container[b-xusk6y4au4] {
        height: 35rem;
    }

    .admin-header[b-xusk6y4au4] {
        padding: 1.5rem 0;
    }

    .badge[b-xusk6y4au4] {
        font-size: 0.75rem;
    }

    .split-layout[b-xusk6y4au4] {
        grid-template-columns: 35% 65%;
        height: calc(100vh - 85px);
        overflow: hidden;
    }

    .list-item[b-xusk6y4au4] {
        padding: 1.25rem;
    }

    .date[b-xusk6y4au4] {
        font-size: 0.75rem;
    }

    .item-sub[b-xusk6y4au4] {
        font-size: 0.85rem;
    }

    .detail-view[b-xusk6y4au4] {
        padding: 0 2rem;
    }

    .detail-card[b-xusk6y4au4] {
        padding: 0 2rem;
    }

    .detail-header[b-xusk6y4au4] {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }

    .detail-section[b-xusk6y4au4] {
        margin-bottom: 2rem;
    }

    .detail-section h3[b-xusk6y4au4] {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .proof-box[b-xusk6y4au4], .info-box[b-xusk6y4au4] {
        padding: 1rem;
    }

    .action-footer[b-xusk6y4au4] {
        margin-top: 3rem;
        padding-top: 2rem;
        flex-direction: row;
    }

    .btn-success[b-xusk6y4au4], .btn-danger[b-xusk6y4au4] {
        width: 50%;
        padding: 1rem;
        font-size: 1rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/
@media screen and (min-width: 992px) and (max-width: 1625px) {
    .main-container[b-xusk6y4au4] {
        height: calc(100vh - 85px);
        padding: 0 1rem;
    }

    .admin-header[b-xusk6y4au4] {
        padding: 1rem 0;
    }

    .badge[b-xusk6y4au4] {
        font-size: 0.7rem;
    }

    .split-layout[b-xusk6y4au4] {
        grid-template-columns: 40% 60%;
        height: 100%;
        overflow: hidden;
    }

    .list-item[b-xusk6y4au4] {
        padding: 1rem;
    }

    .date[b-xusk6y4au4] {
        font-size: 0.7rem;
    }

    .item-sub[b-xusk6y4au4] {
        font-size: 0.8rem;
    }

    .detail-view[b-xusk6y4au4] {
        padding: 0 1.5rem;
    }

    .detail-card[b-xusk6y4au4] {
        padding: 0 1.5rem;
    }

    .detail-header[b-xusk6y4au4] {
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
    }

    .detail-section[b-xusk6y4au4] {
        margin-bottom: 1.5rem;
    }

    .detail-section h3[b-xusk6y4au4] {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .proof-box[b-xusk6y4au4], .info-box[b-xusk6y4au4] {
        padding: 0.85rem;
    }

    .action-footer[b-xusk6y4au4] {
        margin-top: 2rem;
        padding-top: 1rem;
        flex-direction: row;
    }

    .btn-success[b-xusk6y4au4], .btn-danger[b-xusk6y4au4] {
        width: 50%;
        padding: 0.85rem;
        font-size: 0.95rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .main-container[b-xusk6y4au4] {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .admin-header[b-xusk6y4au4] {
        padding: 1rem 0;
    }

    .badge[b-xusk6y4au4] {
        font-size: 0.7rem;
    }

    .split-layout[b-xusk6y4au4] {
        grid-template-columns: 1fr;
        height: auto;
    }

    .master-list[b-xusk6y4au4] {
        max-height: 35vh;
        border: 1px solid var(--light-color);
    }

    .list-item[b-xusk6y4au4] {
        padding: 0.85rem;
    }

    .date[b-xusk6y4au4] {
        font-size: 0.7rem;
    }

    .item-sub[b-xusk6y4au4] {
        font-size: 0.8rem;
    }

    .detail-view[b-xusk6y4au4] {
        padding: 1rem 0;
        overflow-y: visible;
    }

    .detail-card[b-xusk6y4au4] {
        padding: 0;
    }

    .detail-header[b-xusk6y4au4] {
        margin-bottom: 1.5rem;
    }

    .detail-section[b-xusk6y4au4] {
        margin-bottom: 1.5rem;
    }

    .detail-section h3[b-xusk6y4au4] {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .proof-box[b-xusk6y4au4], .info-box[b-xusk6y4au4] {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .action-footer[b-xusk6y4au4] {
        margin-top: 1.5rem;
        padding-top: 1rem;
        flex-direction: column;
    }

    .btn-success[b-xusk6y4au4], .btn-danger[b-xusk6y4au4] {
        width: 100%;
        padding: 0.85rem;
        font-size: 0.95rem;
    }
}
/* /Components/Pages/Claim.razor.rz.scp.css */
.background[b-o2225lyad6] {
    margin: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout[b-o2225lyad6] {
    width: 100%;
    margin: 0 auto;
    height: 100vh;
    overflow-y: auto;
}

@keyframes fadeIn-b-o2225lyad6 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut-b-o2225lyad6 {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fade-in[b-o2225lyad6] {
    animation: fadeIn-b-o2225lyad6 1s ease-out forwards;
}

.fade-out[b-o2225lyad6] {
    animation: fadeOut-b-o2225lyad6 1s ease-out forwards;
}

.wizard-container[b-o2225lyad6] {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.wizard-content[b-o2225lyad6] {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}

.wizard-step[b-o2225lyad6] {
    width: 100%;
}

.input-label[b-o2225lyad6] {
    font-weight: 600;
    color: var(--dark-color);
}

.hint-text[b-o2225lyad6] {
    color: var(--medium-color);
}

.intro-layout[b-o2225lyad6] {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.intro-left[b-o2225lyad6] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.intro-left[b-o2225lyad6]  .empty-state-container {
    box-shadow: none;
    background: transparent;
}

.intro-right[b-o2225lyad6] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.sidebar-steps-readonly[b-o2225lyad6] {
    display: flex;
    flex-direction: column;
}

.nav-step[b-o2225lyad6] {
    display: flex;
    align-items: flex-start;
    border-radius: 12px;
    transition: background-color 0.2s;
    border: 2px solid transparent;
}

.nav-step:hover[b-o2225lyad6] {
    background-color: var(--light-color);
}

.step-icon[b-o2225lyad6] {
    background: transparent;
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3[b-o2225lyad6] {
    color: var(--dark-color);
    margin: 0;
}

.step-content p[b-o2225lyad6] {
    color: var(--dark-color);
    opacity: 0.7;
    margin: 0;
    line-height: 1.4;
}

.confirmation-layout[b-o2225lyad6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.wizard-footer[b-o2225lyad6] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.progress-bar-container[b-o2225lyad6] {
    width: 100%;
    height: 4px;
    background-color: #ebebeb;
    position: fixed;
    bottom: 0;
    left: 0;
}

.progress-bar-fill[b-o2225lyad6] {
    height: 100%;
    background-color: var(--brand);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-buttons[b-o2225lyad6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

.btn-text[b-o2225lyad6] {
    background: none;
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    border-radius: var(--sleek-border-radius);
    transition: background 0.2s;
}

.btn-text:hover[b-o2225lyad6] {
    background: var(--light-color);
}

.btn[b-o2225lyad6] {
    background: var(--brand);
    color: var(--background-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--sleek-border-radius);
    transition: transform 0.1s, opacity 0.2s;
}

.btn:active[b-o2225lyad6] {
    transform: scale(0.96);
}

.btn:disabled[b-o2225lyad6] {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.btn:hover[b-o2225lyad6] {
    background: var(--dark-color);
}

.loading-wrapper[b-o2225lyad6] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    min-height: 50vh;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .layout[b-o2225lyad6] {
        padding: 4rem 2rem 8rem 2rem;
    }

    .wizard-content[b-o2225lyad6] {
        justify-content: center;
        align-items: center;
        max-width: 1000px;
        padding: 2rem;
    }

    .wizard-step[b-o2225lyad6] {
        width: 700px;
    }

    .intro-layout[b-o2225lyad6] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 2rem;
    }

    .confirmation-layout[b-o2225lyad6] {
        max-width: 500px;
        padding: 2rem;
    }

    .sidebar-steps-readonly[b-o2225lyad6] {
        gap: 2rem;
    }

    .nav-step[b-o2225lyad6] {
        padding: 1rem;
        gap: 0.75rem;
    }

    .step-icon[b-o2225lyad6] {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .step-content h3[b-o2225lyad6] {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .step-content p[b-o2225lyad6] {
        font-size: 0.9rem;
    }

    .input-label[b-o2225lyad6] {
        font-size: 1.5rem;
    }

    .hint-text[b-o2225lyad6] {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-buttons[b-o2225lyad6] {
        padding: 1.25rem 2rem;
        width: 100%;
    }

    .btn-text[b-o2225lyad6], .btn[b-o2225lyad6] {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/
@media screen and (min-width: 992px) and (max-width: 1625px) {
    .layout[b-o2225lyad6] {
        padding: 3rem 2rem 6rem 2rem;
    }

    .wizard-content[b-o2225lyad6] {
        justify-content: center;
        align-items: center;
        max-width: 850px;
        padding: 2rem;
    }

    .wizard-step[b-o2225lyad6] {
        width: 600px;
    }

    .intro-layout[b-o2225lyad6] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .confirmation-layout[b-o2225lyad6] {
        max-width: 500px;
        padding: 2rem;
    }

    .sidebar-steps-readonly[b-o2225lyad6] {
        gap: 1.25rem;
    }

    .nav-step[b-o2225lyad6] {
        padding: 0.85rem;
        gap: 0.75rem;
    }

    .step-icon[b-o2225lyad6] {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .step-content h3[b-o2225lyad6] {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .step-content p[b-o2225lyad6] {
        font-size: 0.85rem;
    }

    .input-label[b-o2225lyad6] {
        font-size: 1.35rem;
    }

    .hint-text[b-o2225lyad6] {
        margin-bottom: 1.25rem;
        font-size: 0.9rem;
    }

    .footer-buttons[b-o2225lyad6] {
        padding: 1rem 2rem;
        width: 100%;
    }

    .btn-text[b-o2225lyad6], .btn[b-o2225lyad6] {
        padding: 0.7rem 1.25rem;
        font-size: 0.95rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .layout[b-o2225lyad6] {
        padding: 4rem 1rem 7rem 1rem;
    }
    
    .wizard-content[b-o2225lyad6] {
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1rem 0;
    }

    .intro-layout[b-o2225lyad6] {
        gap: 2.5rem;
        padding: 0;
    }

    .confirmation-layout[b-o2225lyad6] {
        max-width: 100%;
        padding: 1rem 0;
    }

    .sidebar-steps-readonly[b-o2225lyad6] {
        gap: 1rem;
    }

    .nav-step[b-o2225lyad6] {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .step-icon[b-o2225lyad6] {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .step-content h3[b-o2225lyad6] {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .step-content p[b-o2225lyad6] {
        display: none;
    }

    .input-label[b-o2225lyad6] {
        font-size: 1.25rem;
    }

    .hint-text[b-o2225lyad6] {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }

    .footer-buttons[b-o2225lyad6] {
        padding: 1rem;
    }

    .btn-text[b-o2225lyad6], .btn[b-o2225lyad6] {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}
/* /Components/Pages/Company.razor.rz.scp.css */
.background[b-57ld7m8nmi] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.main-container[b-57ld7m8nmi] {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    flex: 1;
}

.profile-header[b-57ld7m8nmi] {
    display: flex;
}

.profile-logo[b-57ld7m8nmi] {
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--light-color);
    background: #fff;
    flex-shrink: 0;
}

.profile-logo img[b-57ld7m8nmi] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-placeholder[b-57ld7m8nmi] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--dark-color);
    background: var(--light-color);
}

.profile-info[b-57ld7m8nmi] {
    flex-grow: 1;
}

.profile-name[b-57ld7m8nmi] {
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 0.5rem 0;
}

.verified-badge[b-57ld7m8nmi] {
    color: #3b82f6;
}

.profile-meta[b-57ld7m8nmi] {
    display: flex;
    flex-wrap: wrap;
    color: var(--medium-color);
}

.meta-item i[b-57ld7m8nmi] {
    margin-right: 4px;
    color: var(--dark-color);
}

.btn-primary[b-57ld7m8nmi] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: var(--background-color);
    border-radius: 50rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    outline: none;
    border: none;
    gap: 0.5rem;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover[b-57ld7m8nmi] {
    background: var(--brand-light);
}

.profile-tabs[b-57ld7m8nmi] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tab-btn[b-57ld7m8nmi] {
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    background: transparent;
    color: var(--dark-color);
    transition: background 0.2s, color 0.2s;
}

.tab-btn:hover[b-57ld7m8nmi] {
    background: var(--light-color);
}

.tab-btn.active[b-57ld7m8nmi] {
    background-color: var(--brand);
    color: var(--background-color);
}

.profile-content[b-57ld7m8nmi] {
    min-height: 30rem;
}

.product-grid[b-57ld7m8nmi] {
    display: grid;
}

.about-section h3[b-57ld7m8nmi] {
    color: var(--dark-color);
    margin-top: 0;
}

.about-section p[b-57ld7m8nmi] {
    color: #4b5563;
    line-height: 1.6;
}

.loading-wrapper[b-57ld7m8nmi] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    min-height: 50vh;
}

.verified-badge[b-57ld7m8nmi] {
    color: var(--brand);
    font-size: 0.85em;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/**************** Animations ****************/

@keyframes fadeIn-b-57ld7m8nmi {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in[b-57ld7m8nmi] {
    animation: fadeIn-b-57ld7m8nmi 1s ease-out forwards;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {

    .main-container[b-57ld7m8nmi] {
        max-width: 900px;
        padding-top: 10rem;
        min-height: calc(100vh - 90px);
    }

    .profile-header[b-57ld7m8nmi] {
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .profile-logo[b-57ld7m8nmi] {
        width: 100px;
        height: 100px;
    }

    .logo-placeholder[b-57ld7m8nmi] {
        font-size: 3rem;
    }

    .profile-name[b-57ld7m8nmi] {
        font-size: 1.8rem;
    }

    .verified-badge[b-57ld7m8nmi] {
        font-size: 1.2rem;
    }

    .profile-meta[b-57ld7m8nmi] {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .btn-primary[b-57ld7m8nmi] {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    .tab-btn[b-57ld7m8nmi] {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }

    .product-grid[b-57ld7m8nmi] {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
        gap: 2rem 1.5rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .main-container[b-57ld7m8nmi] {
        max-width: 850px;
        padding-top: 8rem;
        padding-left: 2rem;
        padding-right: 2rem;
        min-height: calc(100vh - 90px);
    }

    .profile-header[b-57ld7m8nmi] {
        align-items: center;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .profile-logo[b-57ld7m8nmi] {
        width: 85px;
        height: 85px;
    }

    .logo-placeholder[b-57ld7m8nmi] {
        font-size: 2.5rem;
    }

    .profile-name[b-57ld7m8nmi] {
        font-size: 1.6rem;
    }

    .verified-badge[b-57ld7m8nmi] {
        font-size: 1.1rem;
    }

    .profile-meta[b-57ld7m8nmi] {
        gap: 1.25rem;
        font-size: 0.85rem;
    }

    .btn-primary[b-57ld7m8nmi] {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .tab-btn[b-57ld7m8nmi] {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .product-grid[b-57ld7m8nmi] {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .main-container[b-57ld7m8nmi] {
        width: 100%;
        padding-top: 6rem;
        padding-left: 1rem;
        padding-right: 1rem;
        min-height: calc(100vh - 70px);
    }

    .profile-header[b-57ld7m8nmi] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .profile-logo[b-57ld7m8nmi] {
        width: 70px;
        height: 70px;
    }

    .logo-placeholder[b-57ld7m8nmi] {
        font-size: 2rem;
    }

    .profile-name[b-57ld7m8nmi] {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .verified-badge[b-57ld7m8nmi] {
        font-size: 1rem;
    }

    .profile-meta[b-57ld7m8nmi] {
        gap: 0.75rem;
        font-size: 0.85rem;
        flex-direction: column;
    }

    .profile-actions[b-57ld7m8nmi] {
        width: 100%;
        margin-top: 0.5rem;
    }

    .btn-primary[b-57ld7m8nmi] {
        width: 100%;
        padding: 0.85rem;
        font-size: 1rem;
    }

    .profile-tabs[b-57ld7m8nmi] {
        gap: 0.4rem;
        margin-bottom: 1.5rem;
    }

    .tab-btn[b-57ld7m8nmi] {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .product-grid[b-57ld7m8nmi] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* /Components/Pages/Create.razor.rz.scp.css */
.background[b-y6xkrav7up] {
    margin: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-layout[b-y6xkrav7up] {
    width: 100%;
    margin: 0 auto;
    height: 100vh;
    overflow-y: auto;
}

@keyframes fadeIn-b-y6xkrav7up {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut-b-y6xkrav7up {
    from { opacity: 1; }
    to { opacity: 0; }
}

.fade-in[b-y6xkrav7up] { animation: fadeIn-b-y6xkrav7up 1s ease-out forwards; }
.fade-out[b-y6xkrav7up] { animation: fadeOut-b-y6xkrav7up 1s ease-out forwards; }


.edit-header[b-y6xkrav7up] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.header-actions[b-y6xkrav7up] {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.wizard-container[b-y6xkrav7up] {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.wizard-content[b-y6xkrav7up] {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}

.wizard-step[b-y6xkrav7up] {
    width: 100%;
}

.input-label[b-y6xkrav7up] {
    font-weight: 600;
    color: var(--dark-color);
}

.hint-text[b-y6xkrav7up] {
    color: var(--medium-color);
}

.intro-layout[b-y6xkrav7up] {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.intro-left[b-y6xkrav7up] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.intro-left[b-y6xkrav7up]  .empty-state-container {
    box-shadow: none;
    background: transparent;
}

.intro-right[b-y6xkrav7up] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.sidebar-steps-readonly[b-y6xkrav7up] {
    display: flex;
    flex-direction: column;
}

.nav-step[b-y6xkrav7up] {
    display: flex;
    align-items: flex-start;
    border-radius: 12px;
    transition: background-color 0.2s;
    border: 2px solid transparent;
}

.nav-step:hover[b-y6xkrav7up] {
    background-color: var(--light-color);
}

.step-icon[b-y6xkrav7up] {
    background: transparent;
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3[b-y6xkrav7up] {
    color: var(--dark-color);
    margin: 0;
}

.step-content p[b-y6xkrav7up] {
    color: var(--dark-color);
    opacity: 0.7;
    margin: 0;
    line-height: 1.4;
}

.chip-container[b-y6xkrav7up] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.chip[b-y6xkrav7up] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--medium-color);
    border-radius: 30px;
    background: var(--background-color);
    font-weight: 500;
    color: var(--dark-color);
    transition: border-color 0.2s;
}

.chip:hover[b-y6xkrav7up], .chip.editing[b-y6xkrav7up] {
    border-color: var(--dark-color);
}

.add-chip[b-y6xkrav7up] {
    border: 1px dashed var(--medium-color);
    cursor: pointer;
}

.add-chip:hover[b-y6xkrav7up] {
    background: #f9f9f9;
    border-color: var(--dark-color);
}

.wizard-footer[b-y6xkrav7up] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.progress-bar-container[b-y6xkrav7up] {
    width: 100%;
    height: 4px;
    background-color: #ebebeb;
    top: 0;
    left: 0;
}

.progress-bar-fill[b-y6xkrav7up] {
    height: 100%;
    background-color: var(--brand);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-buttons[b-y6xkrav7up] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

.btn-text[b-y6xkrav7up] {
    background: none;
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    border-radius: var(--sleek-border-radius);
    transition: background 0.2s;
}

.btn-text:hover[b-y6xkrav7up] {
    background: var(--light-color);
}

.btn[b-y6xkrav7up] {
    background: var(--brand);
    color: var(--background-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--sleek-border-radius);
    transition: transform 0.1s, opacity 0.2s;
}

.btn:active[b-y6xkrav7up] {
    transform: scale(0.96);
}

.btn:disabled[b-y6xkrav7up] {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.btn:hover[b-y6xkrav7up] {
    background: var(--dark-color);
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .edit-layout[b-y6xkrav7up] {
        padding: 6rem 2rem;
    }

    .edit-header[b-y6xkrav7up] {
        padding: 1.5rem 2rem;
    }

    .wizard-content[b-y6xkrav7up] {
        justify-content: center;
        align-items: center;
        max-width: 1000px;
        padding: 2rem;
    }

    .wizard-step[b-y6xkrav7up] {
        max-width: 700px;
    }

    .intro-layout[b-y6xkrav7up] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 2rem;
    }

    .sidebar-steps-readonly[b-y6xkrav7up] {
        gap: 2rem;
    }

    .nav-step[b-y6xkrav7up] {
        padding: 1rem;
        gap: 0.75rem;
    }

    .step-icon[b-y6xkrav7up] {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .step-content h3[b-y6xkrav7up] {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .step-content p[b-y6xkrav7up] {
        font-size: 0.9rem;
    }

    .input-label[b-y6xkrav7up] {
        font-size: 1.5rem;
    }

    .hint-text[b-y6xkrav7up] {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .chip[b-y6xkrav7up] {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .footer-buttons[b-y6xkrav7up] {
        padding: 1.25rem 2rem;
        width: 100%;
    }

    .btn-text[b-y6xkrav7up], .btn[b-y6xkrav7up] {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .edit-layout[b-y6xkrav7up] {
        padding: 5rem 2rem;
    }

    .edit-header[b-y6xkrav7up] {
        padding: 1rem 2rem;
    }

    .wizard-content[b-y6xkrav7up] {
        justify-content: center;
        align-items: center;
        max-width: 850px;
        padding: 2rem;
    }

    .wizard-step[b-y6xkrav7up] {
        max-width: 600px;
    }

    .intro-layout[b-y6xkrav7up] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .sidebar-steps-readonly[b-y6xkrav7up] {
        gap: 1.25rem;
    }

    .nav-step[b-y6xkrav7up] {
        padding: 0.85rem;
        gap: 0.75rem;
    }

    .step-icon[b-y6xkrav7up] {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .step-content h3[b-y6xkrav7up] {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .step-content p[b-y6xkrav7up] {
        font-size: 0.85rem;
    }

    .input-label[b-y6xkrav7up] {
        font-size: 1.35rem;
    }

    .hint-text[b-y6xkrav7up] {
        margin-bottom: 1.25rem;
        font-size: 0.9rem;
    }

    .chip[b-y6xkrav7up] {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

    .footer-buttons[b-y6xkrav7up] {
        padding: 1rem 2rem;
        width: 100%;
    }

    .btn-text[b-y6xkrav7up], .btn[b-y6xkrav7up] {
        padding: 0.7rem 1.25rem;
        font-size: 0.95rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .edit-layout[b-y6xkrav7up] {
        padding: 5rem 1rem 7rem 1rem;
    }

    .edit-header[b-y6xkrav7up] {
        padding: 0.75rem 1rem;
    }

    .header-actions .btn[b-y6xkrav7up] {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .wizard-content[b-y6xkrav7up] {
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1rem 0;
    }

    .intro-layout[b-y6xkrav7up] {
        gap: 2.5rem;
        padding: 0;
    }

    .sidebar-steps-readonly[b-y6xkrav7up] {
        gap: 1rem;
    }

    .nav-step[b-y6xkrav7up] {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .step-icon[b-y6xkrav7up] {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .step-content h3[b-y6xkrav7up] {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .step-content p[b-y6xkrav7up] {
        font-size: 0.85rem;
    }

    .input-label[b-y6xkrav7up] {
        font-size: 1.25rem;
    }

    .hint-text[b-y6xkrav7up] {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }

    .chip[b-y6xkrav7up] {
        padding: 0.6rem 0.85rem;
        font-size: 0.85rem;
    }

    .footer-buttons[b-y6xkrav7up] {
        padding: 1rem;
    }

    .btn-text[b-y6xkrav7up], .btn[b-y6xkrav7up] {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
.background[b-10iy8x0e1t] {
    min-height: 100vh;
    display: flex;
    position: relative;
    background-color: var(--background-color);
}

.main-container[b-10iy8x0e1t] {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    flex: 1;
}

.user-menu[b-10iy8x0e1t] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
}

.statistics-group[b-10iy8x0e1t] {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.statistics-row[b-10iy8x0e1t] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.statistics-row > :nth-child(3)[b-10iy8x0e1t] {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.tab-header-group[b-10iy8x0e1t] {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 1rem;
}

.tab-option-row[b-10iy8x0e1t] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.tab-chip[b-10iy8x0e1t], .tab-selected-chip[b-10iy8x0e1t] {
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}

.tab-chip[b-10iy8x0e1t] {
    background: var(--light-color);
    color: var(--dark-color);
}

.tab-chip:hover[b-10iy8x0e1t] {
    background-color: var(--brand);
    color: var(--background-color);
}

.tab-selected-chip[b-10iy8x0e1t] {
    background-color: var(--brand);
    color: var(--background-color);
}

.bubble-cluster-container[b-10iy8x0e1t] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.forms-list[b-10iy8x0e1t] {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.add-button-container[b-10iy8x0e1t] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 5rem;
}

.add-saas-button[b-10iy8x0e1t] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.25rem;
    background: transparent;
    color: var(--dark-color);
    border: none;
    outline: none;
    transition: 0.25s;
}

.add-saas-button:hover[b-10iy8x0e1t] {
    background: var(--brand);
    color: var(--background-color);
    cursor: pointer;
} 

/**************** Animations ****************/

@keyframes fadeIn-b-10iy8x0e1t {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in[b-10iy8x0e1t] {
    animation: fadeIn-b-10iy8x0e1t 1s ease-out forwards;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .main-container[b-10iy8x0e1t] {
        max-width: 1100px;
        padding: 10rem 2rem 8rem 2rem;
    }

    .statistics-row[b-10iy8x0e1t] {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
        margin-bottom: 0rem;
    }

    .statistics-row > :nth-child(3)[b-10iy8x0e1t] {
        grid-column: auto;
        padding: 0;
    }

    .circle-packer-group[b-10iy8x0e1t] {
        
    }

    .bubble-cluster-container[b-10iy8x0e1t] {
        min-height: 400px;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .main-container[b-10iy8x0e1t] {
        max-width: 900px;
        padding: 8rem 2rem 6rem 2rem;
    }

    .statistics-row[b-10iy8x0e1t] {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
        margin-bottom: 0rem;
    }

    .statistics-row > :nth-child(3)[b-10iy8x0e1t] {
        grid-column: auto;
        padding: 0;
    }

    .circle-packer-group[b-10iy8x0e1t] {
        
    }

    .bubble-cluster-container[b-10iy8x0e1t] {
        min-height: 400px;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .main-container[b-10iy8x0e1t] {
        max-width: 100%;
        padding: 7rem 1rem 4rem 1rem;
    }

    .circle-packer-group[b-10iy8x0e1t] {
        margin-bottom: 2rem;
    }

    .bubble-cluster-container[b-10iy8x0e1t] {
        min-height: auto;
        padding: 1rem 0;
    }

    .tab-chip[b-10iy8x0e1t], .tab-selected-chip[b-10iy8x0e1t] {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .statistics-group[b-10iy8x0e1t] {
        margin-bottom: 3rem;
    }
}
/* /Components/Pages/Edit.razor.rz.scp.css */
.background[b-4so1yptiaj] {
    margin: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-layout[b-4so1yptiaj] {
    width: 100%;
    margin: 0 auto;
}

/**************** Animations ****************/

@keyframes fadeIn-b-4so1yptiaj {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut-b-4so1yptiaj {
    from { opacity: 1; }
    to { opacity: 0; }
}

.fade-in[b-4so1yptiaj] { animation: fadeIn-b-4so1yptiaj 1s ease-out forwards; }
.fade-out[b-4so1yptiaj] { animation: fadeOut-b-4so1yptiaj 1s ease-out forwards; }

.edit-header[b-4so1yptiaj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.header-actions[b-4so1yptiaj] {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.sidebar[b-4so1yptiaj] {
    position: relative;
    z-index: 40;
}

.sticky-nav[b-4so1yptiaj] {
    display: flex;
    background: var(--background-color);
}

.nav-step[b-4so1yptiaj] {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color 0.2s, border-color 0.2s;
    border: 2px solid transparent;
}

.nav-step:hover:not(.active)[b-4so1yptiaj] {
    background-color: var(--light-color);
}

.nav-step.active[b-4so1yptiaj] {
    background-color: var(--background-color);
    border-color: var(--brand);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-step.active .step-icon[b-4so1yptiaj] {
    background-color: var(--brand);
    color: var(--background-color);
}

.nav-step.active h3[b-4so1yptiaj] {
    color: #000;
    font-weight: 700;
}

.step-icon[b-4so1yptiaj] {
    background: transparent;
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.2s, color 0.2s;
}

.step-content h3[b-4so1yptiaj] {
    color: var(--dark-color);
    margin: 0;
}

.step-content p[b-4so1yptiaj] {
    color: var(--dark-color);
    opacity: 0.7;
    margin: 0;
    line-height: 1.4;
}

.content-cards[b-4so1yptiaj] {
    display: flex;
    flex-direction: column;
}

.card[b-4so1yptiaj] {
    background: #ffffff;
}

.card h2[b-4so1yptiaj] {
    color: var(--dark-color);
    margin-top: 0;
}

.form-group[b-4so1yptiaj] {
    display: flex;
    flex-direction: column;
}

.form-group label[b-4so1yptiaj] {
    font-weight: 600;
    color: var(--dark-color);
}

.hint-text[b-4so1yptiaj] {
    color: var(--medium-color);
}

.chip-container[b-4so1yptiaj] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.chip[b-4so1yptiaj] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--medium-color);
    border-radius: 30px;
    background: var(--background-color);
    font-weight: 500;
    color: var(--dark-color);
    transition: border-color 0.2s;
}

.chip:hover[b-4so1yptiaj], .chip.editing[b-4so1yptiaj] {
    border-color: var(--dark-color);
}

.add-chip[b-4so1yptiaj] {
    border: 1px dashed var(--medium-color);
    cursor: pointer;
}

.add-chip:hover[b-4so1yptiaj] {
    background: #f9f9f9;
    border-color: var(--dark-color);
}

.wizard-footer[b-4so1yptiaj] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.footer-buttons[b-4so1yptiaj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.btn-text[b-4so1yptiaj] {
    background: none;
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    border-radius: var(--sleek-border-radius);
    transition: background 0.2s;
}

.btn-text:hover[b-4so1yptiaj] {
    background: var(--light-color);
}

.btn[b-4so1yptiaj], .btn-save[b-4so1yptiaj] {
    background: var(--brand);
    color: var(--background-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--sleek-border-radius);
    transition: transform 0.1s, background 0.2s, opacity 0.2s;
}

.btn:active[b-4so1yptiaj], .btn-save:active[b-4so1yptiaj] {
    transform: scale(0.96);
}

.btn:hover[b-4so1yptiaj], .btn-save:hover[b-4so1yptiaj] {
    background: var(--dark-color);
}

.btn:disabled[b-4so1yptiaj] {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .edit-layout[b-4so1yptiaj] {
        max-width: 1200px;
        padding: 12rem 2rem 8rem 2rem;
    }

    .edit-header[b-4so1yptiaj] {
        padding: 1.5rem 2rem;
    }

    .edit-grid[b-4so1yptiaj] {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
    }

    .sticky-nav[b-4so1yptiaj] {
        position: fixed;
        top: 12rem;
        flex-direction: column;
        gap: 2rem;
    }

    .nav-step[b-4so1yptiaj] {
        padding: 1rem;
        gap: 0.75rem;
    }

    .step-icon[b-4so1yptiaj] {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .step-content h3[b-4so1yptiaj] {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .step-content p[b-4so1yptiaj] {
        font-size: 0.9rem;
    }

    .content-cards[b-4so1yptiaj] {
        gap: 3rem;
    }

    .card[b-4so1yptiaj] {
        padding: 0 2.5rem 2.5rem 2.5rem;
    }

    .card h2[b-4so1yptiaj] {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group[b-4so1yptiaj] {
        margin-bottom: 4rem;
    }

    .form-group label[b-4so1yptiaj] {
        font-size: 1.5rem;
    }

    .hint-text[b-4so1yptiaj] {
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .chip[b-4so1yptiaj] {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .footer-buttons[b-4so1yptiaj] {
        padding: 1.25rem 2rem;
        width: 100%;
    }

    .btn[b-4so1yptiaj], .btn-save[b-4so1yptiaj] {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .btn-text[b-4so1yptiaj] {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .edit-layout[b-4so1yptiaj] {
        max-width: 1000px;
        padding: 10rem 2rem 8rem 2rem;
    }

    .edit-header[b-4so1yptiaj] {
        padding: 1rem 2rem;
    }

    .edit-grid[b-4so1yptiaj] {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 1.5rem;
    }

    .sticky-nav[b-4so1yptiaj] {
        position: fixed;
        top: 10rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-step[b-4so1yptiaj] {
        padding: 0.85rem;
        gap: 0.75rem;
    }

    .step-icon[b-4so1yptiaj] {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .step-content h3[b-4so1yptiaj] {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .step-content p[b-4so1yptiaj] {
        font-size: 0.85rem;
    }

    .content-cards[b-4so1yptiaj] {
        gap: 2.5rem;
    }

    .card[b-4so1yptiaj] {
        padding: 0 2rem 2rem 2rem;
    }

    .card h2[b-4so1yptiaj] {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .form-group[b-4so1yptiaj] {
        margin-bottom: 3rem;
    }

    .form-group label[b-4so1yptiaj] {
        font-size: 1.35rem;
    }

    .hint-text[b-4so1yptiaj] {
        margin-bottom: 0.85rem;
        font-size: 0.9rem;
    }

    .chip[b-4so1yptiaj] {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }

    .footer-buttons[b-4so1yptiaj] {
        padding: 1rem 2rem;
        width: 100%;
    }

    .btn[b-4so1yptiaj], .btn-save[b-4so1yptiaj] {
        padding: 0.7rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-text[b-4so1yptiaj] {
        padding: 0.7rem 1.25rem;
        font-size: 0.95rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {

    .edit-layout[b-4so1yptiaj] {
        width: 100%;
        padding: 9rem 1rem 6rem 1rem;
    }

    .edit-header[b-4so1yptiaj] {
        padding: 0.75rem 1rem;
    }

    .edit-grid[b-4so1yptiaj] {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .sticky-nav[b-4so1yptiaj] {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: row;
        overflow-x: auto;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        border-bottom: 1px solid var(--light-color);
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }

    .sticky-nav[b-4so1yptiaj]::-webkit-scrollbar {
        display: none;
    }

    .sticky-nav[b-4so1yptiaj] {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .nav-step[b-4so1yptiaj] {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .step-icon[b-4so1yptiaj] {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .step-content h3[b-4so1yptiaj] {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .sidebar[b-4so1yptiaj] {
        display: none;
    }

    .content-cards[b-4so1yptiaj] {
        gap: 2rem;
    }

    .card[b-4so1yptiaj] {
        padding: 0 0.5rem 1.5rem 0.5rem;
    }

    .card h2[b-4so1yptiaj] {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .form-group[b-4so1yptiaj] {
        margin-bottom: 2rem;
    }

    .form-group label[b-4so1yptiaj] {
        font-size: 1.2rem;
    }

    .hint-text[b-4so1yptiaj] {
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .chip[b-4so1yptiaj] {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .footer-buttons[b-4so1yptiaj] {
        padding: 1rem;
    }

    .btn[b-4so1yptiaj], .btn-save[b-4so1yptiaj] {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .btn-text[b-4so1yptiaj] {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.background[b-gqpfh9qklq] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.main-container[b-gqpfh9qklq] {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    margin: auto;
}

.hero-section[b-gqpfh9qklq] {
    text-align: center;
    width: 100%;
}

.hero-title[b-gqpfh9qklq] {
    font-weight: 800;
    color: var(--dark-color);
    margin-top: 0;
}

.brand-text[b-gqpfh9qklq] {
    color: var(--brand);
}

.hero-subtitle[b-gqpfh9qklq] {
    color: var(--medium-color);
}

.search-pill-wrapper[b-gqpfh9qklq] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.results-section[b-gqpfh9qklq] {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

.results-header[b-gqpfh9qklq] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.results-header h2[b-gqpfh9qklq] {
    color: var(--dark-color);
    margin: 0;
}

.view-all-link[b-gqpfh9qklq] {
    color: var(--medium-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.view-all-link i[b-gqpfh9qklq] {
    background: white;
    border: 1px solid var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    color: var(--dark-color);
    transition: transform 0.2s, background 0.2s, color 0.2s;
}

.view-all-link:hover[b-gqpfh9qklq] {
    color: var(--brand);
}

.view-all-link:hover i[b-gqpfh9qklq] {
    background: var(--brand);
    color: var(--background-color);
    transform: scale(1.05);
}

.loading-wrapper[b-gqpfh9qklq] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    min-height: 50vh;
}

/**************** Animations ****************/

@keyframes fadeIn-b-gqpfh9qklq {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in[b-gqpfh9qklq] {
    animation: fadeIn-b-gqpfh9qklq 1s ease-out forwards;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .hero-section[b-gqpfh9qklq] {
        padding: 10rem 2rem 4rem 2rem;
    }

    .hero-title[b-gqpfh9qklq] {
        font-size: 3.5rem;
    }

    .hero-subtitle[b-gqpfh9qklq] {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }

    .results-section[b-gqpfh9qklq] {
        padding: 3rem 2rem;
    }

    .results-header[b-gqpfh9qklq] {
        margin-bottom: 1rem;
    }

    .results-header h2[b-gqpfh9qklq] {
        font-size: 1.5rem;
    }

    .view-all-link[b-gqpfh9qklq] {
        font-size: 0.95rem;
    }

    .view-all-link i[b-gqpfh9qklq] {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .product-grid[b-gqpfh9qklq] {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
        width: 100%;
        margin-bottom: 3rem;
        grid-template-rows: 1fr;
        overflow-y: hidden;
        max-height: 15rem;
    }

    .product-grid > *[b-gqpfh9qklq] {
        display: none;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .hero-section[b-gqpfh9qklq] {
        padding: 8rem 2rem 3rem 2rem;
    }

    .hero-title[b-gqpfh9qklq] {
        font-size: 2.75rem;
    }

    .hero-subtitle[b-gqpfh9qklq] {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }

    .results-section[b-gqpfh9qklq] {
        padding: 2rem 1.5rem;
    }

    .results-header[b-gqpfh9qklq] {
        margin-bottom: 0.85rem;
    }

    .results-header h2[b-gqpfh9qklq] {
        font-size: 1.35rem;
    }

    .view-all-link[b-gqpfh9qklq] {
        font-size: 0.9rem;
    }

    .view-all-link i[b-gqpfh9qklq] {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .product-grid[b-gqpfh9qklq] {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        width: 100%;
        margin-bottom: 2.5rem;
        grid-template-rows: 1fr;
        overflow-y: hidden;
        max-height: 19rem;
    }

    .product-grid > *[b-gqpfh9qklq] {
        display: none;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .hero-section[b-gqpfh9qklq] {
        padding: 7rem 1rem 2rem 1rem;
    }

    .hero-title[b-gqpfh9qklq] {
        font-size: 2rem;
    }

    .hero-subtitle[b-gqpfh9qklq] {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .results-section[b-gqpfh9qklq] {
        padding: 1.5rem 1rem;
    }

    .results-header[b-gqpfh9qklq] {
        margin-bottom: 0.75rem;
        align-items: center;
    }

    .results-header h2[b-gqpfh9qklq] {
        font-size: 1.15rem;
    }

    .view-all-link[b-gqpfh9qklq] {
        display: none !important;
        font-size: 0.85rem;
    }

    .view-all-link i[b-gqpfh9qklq] {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .product-grid[b-gqpfh9qklq] {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
}
/* /Components/Pages/Jobs.razor.rz.scp.css */
.background[b-a54sc5unp2] {
    min-height: 100vh;
    display: flex;
    overflow: auto;
    position: relative;
}

/**************** Animations ****************/

@keyframes fadeIn-b-a54sc5unp2 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in[b-a54sc5unp2] {
    animation: fadeIn-b-a54sc5unp2 1s ease-out forwards;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .main-container[b-a54sc5unp2] {
        display: flex;
        max-width: 900px;
        margin: auto;
        height: 35rem;
        flex-direction: column;
        width: 100%;
    }

    .user-menu[b-a54sc5unp2] {
        position: fixed;
        top: 1rem;
        right: 1rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .main-container[b-a54sc5unp2] {
        display: flex;
        max-width: 700px;
        margin: auto;
        height: 30rem;
        flex-direction: column;
        width: 100%;
    }

    .user-menu[b-a54sc5unp2] {
        position: fixed;
        top: 1rem;
        right: 1rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .main-container[b-a54sc5unp2] {
        width: 100%;
        max-width: 550px;
        padding: 1rem;
        height: auto;
        margin-top: 6rem;
        margin-right: auto;
        margin-left: auto;
    }

    .user-menu[b-a54sc5unp2] {
        position: fixed;
        top: 1rem;
        right: 1rem;
    }
}
/* /Components/Pages/Onboarding.razor.rz.scp.css */
.background[b-jlzucfn5rf] {
    margin: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout[b-jlzucfn5rf] {
    width: 100%;
    margin: 0 auto;
    height: 100vh;
    overflow-y: auto;
}

@keyframes fadeIn-b-jlzucfn5rf {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut-b-jlzucfn5rf {
    from { opacity: 1; }
    to { opacity: 0; }
}

.fade-in[b-jlzucfn5rf] { animation: fadeIn-b-jlzucfn5rf 1s ease-out forwards; }
.fade-out[b-jlzucfn5rf] { animation: fadeOut-b-jlzucfn5rf 1s ease-out forwards; }

.wizard-container[b-jlzucfn5rf] {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.wizard-content[b-jlzucfn5rf] {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}

.wizard-step[b-jlzucfn5rf] {
    width: 100%;
}

.input-label[b-jlzucfn5rf] {
    font-weight: 600;
    color: var(--dark-color);
}

.hint-text[b-jlzucfn5rf] {
    color: var(--medium-color);
}

.intro-layout[b-jlzucfn5rf] {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.intro-left[b-jlzucfn5rf] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.intro-left[b-jlzucfn5rf]  .empty-state-container {
    box-shadow: none;
    background: transparent;
}

.intro-right[b-jlzucfn5rf] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.sidebar-steps-readonly[b-jlzucfn5rf] {
    display: flex;
    flex-direction: column;
}

.nav-step[b-jlzucfn5rf] {
    display: flex;
    align-items: flex-start;
    border-radius: 12px;
    transition: background-color 0.2s;
    border: 2px solid transparent;
}

.nav-step:hover[b-jlzucfn5rf] {
    background-color: var(--light-color);
}

.step-icon[b-jlzucfn5rf] {
    background: transparent;
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3[b-jlzucfn5rf] {
    color: var(--dark-color);
    margin: 0;
}

.step-content p[b-jlzucfn5rf] {
    color: var(--dark-color);
    opacity: 0.7;
    margin: 0;
    line-height: 1.4;
}

.wizard-footer[b-jlzucfn5rf] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.progress-bar-container[b-jlzucfn5rf] {
    width: 100%;
    height: 4px;
    background-color: #ebebeb;
    position: fixed;
    bottom: 0;
    left: 0;
}

.progress-bar-fill[b-jlzucfn5rf] {
    height: 100%;
    background-color: var(--brand);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-buttons[b-jlzucfn5rf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}

.btn-text[b-jlzucfn5rf] {
    background: none;
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    border-radius: var(--sleek-border-radius);
    transition: background 0.2s;
}

.btn-text:hover[b-jlzucfn5rf] {
    background: var(--light-color);
}

.btn[b-jlzucfn5rf] {
    background: var(--brand);
    color: var(--background-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--sleek-border-radius);
    transition: transform 0.1s, opacity 0.2s;
}

.btn:active[b-jlzucfn5rf] {
    transform: scale(0.96);
}

.btn:disabled[b-jlzucfn5rf] {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.btn:hover[b-jlzucfn5rf] {
    background: var(--dark-color);
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .layout[b-jlzucfn5rf] {
        padding: 4rem 2rem 8rem 2rem;
    }

    .wizard-content[b-jlzucfn5rf] {
        justify-content: center;
        align-items: center;
        max-width: 1000px;
        padding: 2rem;
    }

    .wizard-step[b-jlzucfn5rf] {
        max-width: 700px;
    }

    .intro-layout[b-jlzucfn5rf] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 2rem;
    }

    .sidebar-steps-readonly[b-jlzucfn5rf] {
        gap: 2rem;
    }

    .nav-step[b-jlzucfn5rf] {
        padding: 1rem;
        gap: 0.75rem;
    }

    .step-icon[b-jlzucfn5rf] {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .step-content h3[b-jlzucfn5rf] {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .step-content p[b-jlzucfn5rf] {
        font-size: 0.9rem;
    }

    .input-label[b-jlzucfn5rf] {
        font-size: 1.5rem;
    }

    .hint-text[b-jlzucfn5rf] {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .footer-buttons[b-jlzucfn5rf] {
        padding: 1.25rem 2rem;
        width: 100%;
    }

    .btn-text[b-jlzucfn5rf], .btn[b-jlzucfn5rf] {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .layout[b-jlzucfn5rf] {
        padding: 3rem 2rem 6rem 2rem;
    }

    .wizard-content[b-jlzucfn5rf] {
        justify-content: center;
        align-items: center;
        max-width: 850px;
        padding: 2rem;
    }

    .wizard-step[b-jlzucfn5rf] {
        max-width: 600px;
    }

    .intro-layout[b-jlzucfn5rf] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .sidebar-steps-readonly[b-jlzucfn5rf] {
        gap: 1.25rem;
    }

    .nav-step[b-jlzucfn5rf] {
        padding: 0.85rem;
        gap: 0.75rem;
    }

    .step-icon[b-jlzucfn5rf] {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .step-content h3[b-jlzucfn5rf] {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .step-content p[b-jlzucfn5rf] {
        font-size: 0.85rem;
    }

    .input-label[b-jlzucfn5rf] {
        font-size: 1.35rem;
    }

    .hint-text[b-jlzucfn5rf] {
        margin-bottom: 1.25rem;
        font-size: 0.9rem;
    }

    .footer-buttons[b-jlzucfn5rf] {
        padding: 1rem 2rem;
        width: 100%;
    }

    .btn-text[b-jlzucfn5rf], .btn[b-jlzucfn5rf] {
        padding: 0.7rem 1.25rem;
        font-size: 0.95rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .layout[b-jlzucfn5rf] {
        padding: 4rem 1rem 7rem 1rem;
    }

    .intro-right[b-jlzucfn5rf] {
        display: none;
    }
    
    .wizard-content[b-jlzucfn5rf] {
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1rem 0;
    }

    .intro-layout[b-jlzucfn5rf] {
        gap: 2.5rem;
        padding: 0;
    }

    .sidebar-steps-readonly[b-jlzucfn5rf] {
        gap: 1rem;
    }

    .nav-step[b-jlzucfn5rf] {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .step-icon[b-jlzucfn5rf] {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .step-content h3[b-jlzucfn5rf] {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .step-content p[b-jlzucfn5rf] {
        display: none;
    }

    .input-label[b-jlzucfn5rf] {
        font-size: 1.25rem;
    }

    .hint-text[b-jlzucfn5rf] {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }

    .footer-buttons[b-jlzucfn5rf] {
        padding: 1rem;
    }

    .btn-text[b-jlzucfn5rf], .btn[b-jlzucfn5rf] {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}
/* /Components/Pages/Search.razor.rz.scp.css */
.background[b-fywczud24m] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.main-container[b-fywczud24m] {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
}

.split-layout[b-fywczud24m] {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.loading-wrapper[b-fywczud24m] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    min-height: 50vh;
}

.results-pane[b-fywczud24m] {
    display: flex;
    flex-direction: column;
}

.results-header[b-fywczud24m] {
    margin-bottom: 1rem;
}

.results-header h2[b-fywczud24m] {
    color: var(--dark-color);
    font-weight: 600;
    margin: 0;
}

.product-grid[b-fywczud24m] {
    display: flex;
    flex-direction: column;
}

.empty-state-container[b-fywczud24m] {
    margin-top: 3rem;
}

.globe-pane[b-fywczud24m] {
    display: flex;
    align-items: center;
    justify-content: center;
}

#globe-container[b-fywczud24m] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#globe-canvas[b-fywczud24m] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: grab;
}

#globe-canvas:active[b-fywczud24m] {
    cursor: grabbing;
}

.pagination[b-fywczud24m] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.page-scroll-button[b-fywczud24m], .page-scroll-button-disabled[b-fywczud24m], .page-button[b-fywczud24m], .page-button-selected[b-fywczud24m], .page-ellipsis[b-fywczud24m] {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 500;
    color: var(--dark-color);
    background: transparent;
    border: none;
}

.page-scroll-button[b-fywczud24m], .page-button[b-fywczud24m] {
    cursor: pointer;
    transition: background-color 0.2s;
}

.page-scroll-button:hover[b-fywczud24m], .page-button:hover[b-fywczud24m] {
    background-color: var(--light-color);
}

.page-button-selected[b-fywczud24m] {
    background-color: var(--brand);
    color: var(--background-color);
}

.page-scroll-button-disabled[b-fywczud24m] {
    opacity: 0.4;
    cursor: default;
}


/**************** Animations ****************/

@keyframes fadeIn-b-fywczud24m {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in[b-fywczud24m] {
    animation: fadeIn-b-fywczud24m 1s ease-out forwards;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .split-layout[b-fywczud24m] {
        align-items: flex-start;
        max-width: 1500px;
        gap: 2rem;
        margin-top: 7rem;
        padding: 0 2rem;
    }

    .results-pane[b-fywczud24m] {
        width: 400px;
        flex-shrink: 0;
        padding: 2rem 0 4rem 0;
        min-height: calc(100vh - 90px);
    }

    .globe-pane[b-fywczud24m] {
        flex: 1;
        height: calc(100vh - 90px);
        position: sticky;
        top: 90px;
    }

    .results-header h2[b-fywczud24m] {
        font-size: 1.5rem;
    }

    .product-grid[b-fywczud24m] {
        gap: 2rem;
    }

    .pagination[b-fywczud24m] {
        padding: 1rem 0;
        margin-bottom: 2rem;
        margin-top: 2rem;
        gap: 0.35rem;
    }

    .page-scroll-button[b-fywczud24m], .page-scroll-button-disabled[b-fywczud24m], .page-button[b-fywczud24m], .page-button-selected[b-fywczud24m], .page-ellipsis[b-fywczud24m] {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .split-layout[b-fywczud24m] {
        align-items: flex-start;
        max-width: 100%;
        gap: 1.5rem;
        margin-top: 6rem;
        padding: 0 2rem;
    }

    .results-pane[b-fywczud24m] {
        width: 350px;
        flex-shrink: 0;
        padding: 1.5rem 0 3rem 0;
        min-height: calc(100vh - 90px);
    }

    .globe-pane[b-fywczud24m] {
        flex: 1;
        height: calc(100vh - 90px);
        position: sticky;
        top: 90px;
    }

    .results-header h2[b-fywczud24m] {
        font-size: 1.35rem;
    }

    .product-grid[b-fywczud24m] {
        gap: 1.5rem;
    }

    .pagination[b-fywczud24m] {
        padding: 1rem 0;
        margin-bottom: 2rem;
        margin-top: 1.5rem;
        gap: 0.25rem;
    }

    .page-scroll-button[b-fywczud24m], .page-scroll-button-disabled[b-fywczud24m], .page-button[b-fywczud24m], .page-button-selected[b-fywczud24m], .page-ellipsis[b-fywczud24m] {
        width: 1.85rem;
        height: 1.85rem;
        font-size: 0.85rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .split-layout[b-fywczud24m] {
        flex-direction: column-reverse;
        margin-top: 4.5rem;
    }

    .results-pane[b-fywczud24m], .globe-pane[b-fywczud24m] {
        width: 100%;
    }

    .globe-pane[b-fywczud24m] {
        height: 45vh;
        position: relative;
    }

    .results-pane[b-fywczud24m] {
        padding: 1.5rem 1rem 3rem 1rem;
    }

    .results-header h2[b-fywczud24m] {
        font-size: 1.25rem;
    }

    .product-grid[b-fywczud24m] {
        gap: 1.25rem;
    }

    .pagination[b-fywczud24m] {
        padding: 0.5rem 0;
        margin-bottom: 1.5rem;
        margin-top: 1rem;
    }

    .page-scroll-button[b-fywczud24m], .page-scroll-button-disabled[b-fywczud24m], .page-button[b-fywczud24m], .page-button-selected[b-fywczud24m], .page-ellipsis[b-fywczud24m] {
        width: 2rem;
        height: 2rem;
        font-size: 0.95rem;
    }
}
/* /Components/Pages/Settings.razor.rz.scp.css */
/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .background[b-ejvtqvliha] {
        background: var(--background-color);
        min-height: 100vh;
        display: flex;
        overflow: auto;
    }

    .user-menu[b-ejvtqvliha] {
        position: fixed;
        top: 1rem;
        right: 1rem;
    }

    .fade-in[b-ejvtqvliha] {
        animation: fadeIn-b-ejvtqvliha 260ms ease-out both;
    }

    @keyframes fadeIn-b-ejvtqvliha {
        from {
            opacity: 0
        }

        to {
            opacity: 1
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .background.fade-in[b-ejvtqvliha] {
            animation: none;
        }
    }

    /**************** Title and Description ****************/

    .settings-title-group[b-ejvtqvliha] {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        z-index: 2;
        margin-bottom: 1rem;
    }

    .settings-title[b-ejvtqvliha] {
        font-size: 1.25rem;
        color: var(--dark-color);
        font-weight: 700;
    }

    .settings-description[b-ejvtqvliha] {
        font-size: 1rem;
        width: 100%;
        color: var(--dark-color);
        display: block;
    }

    /**************************** Core Listings ****************************/

    .main-container[b-ejvtqvliha] {
        display: flex;
        max-width: 800px;
        margin: auto;
        height: 40rem;
        flex-direction: column;
        width: 100%;
    }

    /**************** Options ****************/

    .settings-list[b-ejvtqvliha] {
        list-style-type: none;
        margin: 0;
        width: 100%;
        padding-bottom: 2rem;
    }

    .settings-group[b-ejvtqvliha] {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        background: var(--background-color);
        border-radius: 12px;
        border: 2px solid transparent;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 1.25rem 1.5rem;
    }

    .settings-group:hover[b-ejvtqvliha] {
        background: var(--light-color);
        transition: 0.25s;
    }

    .settings-column[b-ejvtqvliha] {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .settings-item-title[b-ejvtqvliha] {
        font-weight: bold;
        font-size: 1.15rem;
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        white-space: nowrap;
    }

    .settings-item-description[b-ejvtqvliha] {
        font-size: 1rem;
        width: 100%;
        color: var(--dark-color);
        display: block;
    }

    .settings-icon[b-ejvtqvliha] {
        margin-right: 0.5rem;
        color: var(--brand);
    }

    .settings-value[b-ejvtqvliha] {
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1rem;
    }

    .icon-wrap[b-ejvtqvliha] {
        width: 20px;
        height: 20px;
        display: inline-block;
        margin-left: 0.25rem;
    }

    .text-input[b-ejvtqvliha] {
        color: var(--dark-color);
        font-weight: bold;
        font-size: 1rem;
        border: none;
        outline: none;
        text-align: right;
        background: transparent;
        width: 20rem;
    }

    .long-text-input[b-ejvtqvliha] {
        width: 100%;
        color: var(--dark-color);
        font-weight: bold;
        font-size: 0.85rem;
        border: none;
        outline: none;
        text-align: left;
        background: transparent;
        width: 20rem;
        min-height: 3rem;
        field-sizing: content;
        resize: none;
    }

    .delete-cta[b-ejvtqvliha] {
        width: 5rem;
        height: 2.5rem;
        border-radius: 50rem;
        border: none;
        background: var(--error-color);
        color: var(--background-color);
        font-weight: 600;
        cursor: pointer;
    }

    .delete-cta:hover[b-ejvtqvliha] {
        background: var(--dark-color);
        color: var(--background-color);
        transition: 0.25s;
    }

    /**************** Toggle Switch ****************/
    
    .switch-container[b-ejvtqvliha] {
        display: flex;
        align-items: center;
    }

    .switch[b-ejvtqvliha] {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 24px;
        margin-right: 6px;
    }

    .switch input[b-ejvtqvliha] {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider[b-ejvtqvliha] {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--dark-color);
        transition: 0.4s;
        border-radius: 24px;
    }

    .slider[b-ejvtqvliha]:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 3px;
        background-color: var(--background-color);
        transition: 0.4s;
        border-radius: 50%;
    }

    input:checked + .slider[b-ejvtqvliha] {
        background-color: var(--brand);
    }

    input:checked + .slider[b-ejvtqvliha]:before {
        transform: translateX(24px);
    }

    .slider.round[b-ejvtqvliha] {
        border-radius: 24px;
    }

    /**************** Plans ****************/

    .plans-grid[b-ejvtqvliha] {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .plan-card[b-ejvtqvliha] {
        background: var(--background-color);
        border-radius: 16px;
        padding: 1.25rem;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 100%;
        border: 1px solid var(--light-color);
    }

    .plan-card.is-current[b-ejvtqvliha] {
        outline: 2px solid var(--brand);
    }

    .plan-badge[b-ejvtqvliha] {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        background: var(--brand);
        color: var(--background-color);
        opacity: 0.5;
        font-weight: 600;
        padding: 0.25rem 0.5rem;
        border-radius: 999px;
        font-size: 0.75rem;
    }

    .plan-head .plan-name[b-ejvtqvliha] {
        font-size: 1.125rem;
        margin: 0;
    }

    .plan-sub[b-ejvtqvliha] {
        color: var(--light-color);
        font-size: 0.9rem;
        margin-top: 0.25rem;
    }

    .plan-price[b-ejvtqvliha] {
        font-size: 2rem;
        font-weight: 700;
        margin: 0.75rem 0 1rem;
    }

    .plan-price .per[b-ejvtqvliha] {
        font-size: 0.9rem;
        color: var(--dark-color);
        margin-left: 0.25rem;
        opacity: 0.7;
    }

    .plan-cta[b-ejvtqvliha] {
        width: 100%;
        height: 2.5rem;
        border-radius: 10px;
        border: none;
        background: var(--brand);
        color: var(--background-color);
        font-weight: 600;
        cursor: pointer;
    }

    .plan-cta:hover[b-ejvtqvliha] {
        background: var(--dark-color);
        color: var(--background-color);
        transition: 0.25s;
    }

    .plan-cta:disabled[b-ejvtqvliha] {
        background: var(--light-color);
        color: var(--dark-color);
        cursor: default;
    }

    .plan-features[b-ejvtqvliha] {
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 0.5rem;
    }

    .plan-features i[b-ejvtqvliha] {
        color: var(--brand);
        margin-right: 0.5rem;
    }

    .plan-foot[b-ejvtqvliha] {
        margin-top: auto;
        padding-top: .75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .undo-button[b-ejvtqvliha] {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem 0.75rem;
        border-radius: 50rem;
        color: var(--dark-color);
        background: var(--confirmation-color);
    }

    .undo-button:hover[b-ejvtqvliha] {
        color: var(--background-color);
        background: var(--dark-color);
        transition: 0.25s;
    }

    .danger-button[b-ejvtqvliha] {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem 0.75rem;
        border-radius: 50rem;
        color: var(--background-color);
        background: var(--error-color);
    }

    .danger-button:hover[b-ejvtqvliha] {
        background: var(--dark-color);
        transition: 0.25s;
    }

    .empty-spacing[b-ejvtqvliha] {
        padding-bottom: 10rem;
    }

    .tiny-avatar-text-input[b-ejvtqvliha] {
        color: var(--dark-color);
        font-weight: bold;
        font-size: 0.95rem;
        border: none;
        outline: none;
        text-align: right;
        background: transparent;
        width: 20rem;
    }

    .tiny-avatar-group[b-ejvtqvliha] {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .tiny-avatar[b-ejvtqvliha] {
        width: 3.25rem;
        height: 3.25rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: var(--dark-color);
        font-weight: 700;
        font-size: 1.5rem;
        background: var(--light-color);
        position: relative;
    }

    .tiny-avatar:hover[b-ejvtqvliha] {
        cursor: pointer;
        background: var(--dark-color);
        color: var(--background-color);
        transition: 0.25s;
    }

    .btn-remove-avatar[b-ejvtqvliha] {
        position: absolute;
        top: -5px;
        right: -5px;
        background: var(--light-color);
        color: var(--dark-color);
        border: none;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        font-size: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-remove-avatar:hover[b-ejvtqvliha] {
        background: var(--brand);
        color: var(--background-color);
        transition: 0.25s;
    }

    .tiny-avatar img[b-ejvtqvliha] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .tiny-avatar img + .initials[b-ejvtqvliha] {
        display: none;
    }

    /**************************** Avatar ****************************/

    .team-list[b-ejvtqvliha] {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 0.75rem;
    }

    .team-row[b-ejvtqvliha] {
        display: grid;
        grid-template-columns: 40px 1fr 100px;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 1.5rem;
    }

    .avatar[b-ejvtqvliha] {
        width: 40px;
        height: 40px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        font-weight: 700;
        color: var(--background-color);
        background: var(--brand);
        box-shadow: 0 1px 2px rgba(0,0,0,.08) inset, 0 1px 2px rgba(0,0,0,.06);
    }

    .meta .name[b-ejvtqvliha] {
        font-weight: 600;
        line-height: 1.2;
    }

    .meta .email[b-ejvtqvliha] {
        font-size: 0.85rem;
        color: var(--dark-color);
        line-height: 1.2;
        opacity: 0.7;
    }

    .button-container[b-ejvtqvliha] {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .button[b-ejvtqvliha] {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 50rem;
        padding: 0.85rem 1.25rem;
        gap: 0.5rem;
        margin-top: 1rem;
        background: var(--brand);
        color: var(--background-color);
        outline: none;
        border: none;
    }

    .button:hover[b-ejvtqvliha] {
        cursor: pointer;
        background: var(--dark-color);
        transition: 0.25s;
    }

    .button-icon[b-ejvtqvliha] {
        font-size: 0.85rem;
    }

    /**************************** Modal ****************************/

    .modal[b-ejvtqvliha] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        display: block;
        z-index: 999;
    }

    .modal-content[b-ejvtqvliha] {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: var(--background-color);
        padding-top: 3rem;
        padding-bottom: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        border-radius: var(--sleek-border-radius);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        z-index: 3;
        width: 30rem;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .invite-title[b-ejvtqvliha] {
        margin-bottom: 1rem;
    }

    .invite-text-input-container[b-ejvtqvliha] {
        height: 8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .invite-text-input[b-ejvtqvliha] {
        width: 350px;
        border: none;
        outline: none;
        background: transparent;
        color: var(--dark-color);
        text-align: left;
        font-size: 1.5rem;
        font-weight: 500;
        border-bottom: 2px solid var(--light-color);
        text-align: center;
    }

    .invite-text-input:focus[b-ejvtqvliha] {
        border-bottom: 2px solid var(--brand);
    }

    .invite-text-input[b-ejvtqvliha]::placeholder {
        color: var(--light-color);
    }

    .invite-badge[b-ejvtqvliha] {
        background: var(--brand);
        color: var(--background-color);
        opacity: 0.5;
        font-weight: 600;
        padding: 0.25rem 0.5rem;
        border-radius: 999px;
        font-size: 0.75rem;
        width: fit-content;
    }

    .modal-options[b-ejvtqvliha] {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
        width: 100%;
        gap: 1rem;
    }

    .modal-save[b-ejvtqvliha] {
        background-color: var(--brand);
        color: var(--background-color);
        padding: 1rem 1.5rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        margin-left: 0.5rem;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 10rem;
        gap: 0.75rem;
    }

    .modal-save:hover[b-ejvtqvliha] {
        background-color: var(--dark-color);
    }

    .modal-save-error[b-ejvtqvliha] {
        background-color: var(--dark-color);
        color: var(--background-color);
        padding: 1rem 1.5rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        margin-left: 0.5rem;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 10rem;
        gap: 0.75rem;
    }

    .modal-cancel[b-ejvtqvliha] {
        background-color: transparent;
        color: var(--dark-color);
        padding: 1rem 1.5rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        margin-right: 0.5rem;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 10rem;
        gap: 0.75rem;
    }

    .modal-cancel:hover[b-ejvtqvliha] {
        background-color: var(--light-color);
    }

    .error[b-ejvtqvliha] {
        margin-top: 0.75rem;
        color: var(--error-color);
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .background[b-ejvtqvliha] {
        background: var(--background-color);
        min-height: 100vh;
        display: flex;
        overflow: auto;
    }

    .user-menu[b-ejvtqvliha] {
        position: fixed;
        top: 1rem;
        right: 1rem;
    }

    .fade-in[b-ejvtqvliha] {
        animation: fadeIn-b-ejvtqvliha 260ms ease-out both;
    }

    @keyframes fadeIn-b-ejvtqvliha {
        from {
            opacity: 0
        }

        to {
            opacity: 1
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .background.fade-in[b-ejvtqvliha] {
            animation: none;
        }
    }

    /**************** Title and Description ****************/

    .settings-title-group[b-ejvtqvliha] {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        z-index: 2;
        margin-bottom: 0.5rem;
    }

    .settings-title[b-ejvtqvliha] {
        font-size: 1.15rem;
        color: var(--dark-color);
        font-weight: 700;
    }

    .settings-description[b-ejvtqvliha] {
        font-size: 0.85rem;
        width: 100%;
        color: var(--dark-color);
        display: block;
    }

    /**************************** Core Listings ****************************/

    .main-container[b-ejvtqvliha] {
        display: flex;
        max-width: 700px;
        margin: auto;
        height: 40rem;
        flex-direction: column;
        width: 100%;
    }

    /**************** Options ****************/

    .settings-list[b-ejvtqvliha] {
        list-style-type: none;
        margin: 0;
        width: 100%;
        padding-bottom: 2rem;
    }

    .settings-group[b-ejvtqvliha] {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
        background: var(--background-color);
        border-radius: 12px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 1.25rem;
    }

    .settings-group:hover[b-ejvtqvliha] {
        background: var(--light-color);
        transition: 0.25s;
    }

    .settings-column[b-ejvtqvliha] {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .settings-item-title[b-ejvtqvliha] {
        font-weight: bold;
        font-size: 1rem;
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        white-space: nowrap;
    }

    .settings-item-description[b-ejvtqvliha] {
        font-size: 0.85rem;
        width: 100%;
        color: var(--dark-color);
        display: block;
    }

    .settings-icon[b-ejvtqvliha] {
        margin-right: 0.5rem;
        color: var(--brand);
    }

    .settings-value[b-ejvtqvliha] {
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 0.95rem;
    }

    .icon-wrap[b-ejvtqvliha] {
        width: 20px;
        height: 20px;
        display: inline-block;
        margin-left: 0.25rem;
    }

    .text-input[b-ejvtqvliha] {
        color: var(--dark-color);
        font-weight: bold;
        font-size: 0.95rem;
        border: none;
        outline: none;
        text-align: right;
        background: transparent;
        width: 15rem;
    }

    .long-text-input[b-ejvtqvliha] {
        width: 100%;
        color: var(--dark-color);
        font-weight: bold;
        font-size: 0.75rem;
        border: none;
        outline: none;
        text-align: left;
        background: transparent;
        width: 20rem;
        height: 3rem;
        resize: none;
    }

    .delete-cta[b-ejvtqvliha] {
        width: 5rem;
        height: 2.5rem;
        border-radius: 50rem;
        border: none;
        background: var(--error-color);
        color: var(--background-color);
        font-weight: 600;
        cursor: pointer;
    }

    .delete-cta:hover[b-ejvtqvliha] {
        background: var(--dark-color);
        color: var(--background-color);
        transition: 0.25s;
    }

    /**************** Toggle Switch ****************/
    
    .switch-container[b-ejvtqvliha] {
        display: flex;
        align-items: center;
    }

    .switch[b-ejvtqvliha] {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 24px;
        margin-right: 6px;
    }

    .switch input[b-ejvtqvliha] {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider[b-ejvtqvliha] {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--dark-color);
        transition: 0.4s;
        border-radius: 24px;
    }

    .slider[b-ejvtqvliha]:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 3px;
        background-color: var(--background-color);
        transition: 0.4s;
        border-radius: 50%;
    }

    input:checked + .slider[b-ejvtqvliha] {
        background-color: var(--brand);
    }

    input:checked + .slider[b-ejvtqvliha]:before {
        transform: translateX(24px);
    }

    .slider.round[b-ejvtqvliha] {
        border-radius: 24px;
    }

    /**************** Plans ****************/

    .plans-grid[b-ejvtqvliha] {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .plan-card[b-ejvtqvliha] {
        background: var(--background-color);
        border-radius: 14px;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 100%;
        border: 1px solid var(--light-color);
    }

    .plan-card.is-current[b-ejvtqvliha] {
        outline: 2px solid var(--brand);
    }

    .plan-badge[b-ejvtqvliha] {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        background: var(--brand);
        color: var(--background-color);
        opacity: 0.5;
        font-weight: 600;
        padding: 0.25rem 0.5rem;
        border-radius: 999px;
        font-size: 0.75rem;
    }

    .plan-head .plan-name[b-ejvtqvliha] {
        font-size: 1.125rem;
        margin: 0;
    }

    .plan-sub[b-ejvtqvliha] {
        color: var(--light-color);
        font-size: 0.9rem;
        margin-top: 0.25rem;
    }

    .plan-price[b-ejvtqvliha] {
        font-size: 1.75rem;
        font-weight: 700;
        margin: 0.75rem 0 0.75rem;
    }

    .plan-price .per[b-ejvtqvliha] {
        font-size: 0.9rem;
        color: var(--dark-color);
        margin-left: 0.25rem;
        opacity: 0.7;
    }

    .plan-cta[b-ejvtqvliha] {
        width: 100%;
        height: 2.5rem;
        border-radius: 10px;
        border: none;
        background: var(--brand);
        color: var(--background-color);
        font-weight: 600;
        cursor: pointer;
    }

    .plan-cta:hover[b-ejvtqvliha] {
        background: var(--dark-color);
        color: var(--background-color);
        transition: 0.25s;
    }

    .plan-cta:disabled[b-ejvtqvliha] {
        background: var(--light-color);
        color: var(--dark-color);
        cursor: default;
    }

    .plan-features[b-ejvtqvliha] {
        margin: 0.75rem 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .plan-features i[b-ejvtqvliha] {
        color: var(--brand);
        margin-right: 0.25rem;
    }

    .plan-foot[b-ejvtqvliha] {
        margin-top: auto;
        padding-top: .75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .undo-button[b-ejvtqvliha] {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem 0.75rem;
        border-radius: 50rem;
        color: var(--dark-color);
        background: var(--confirmation-color);
    }

    .undo-button:hover[b-ejvtqvliha] {
        background: var(--dark-color);
        transition: 0.25s;
    }

    .danger-button[b-ejvtqvliha] {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem 0.75rem;
        border-radius: 50rem;
        color: var(--background-color);
        background: var(--error-color);
    }

    .danger-button:hover[b-ejvtqvliha] {
        color: var(--background-color);
        background: var(--dark-color);
        transition: 0.25s;
    }

    .empty-spacing[b-ejvtqvliha] {
        padding-bottom: 6rem;
    }

    .tiny-avatar-text-input[b-ejvtqvliha] {
        color: var(--dark-color);
        font-weight: bold;
        font-size: 1rem;
        border: none;
        outline: none;
        text-align: right;
        background: transparent;
        width: 20rem;
    }

    .tiny-avatar-group[b-ejvtqvliha] {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .tiny-avatar[b-ejvtqvliha] {
        width: 3.25rem;
        height: 3.25rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: var(--dark-color);
        font-weight: 700;
        font-size: 1.5rem;
        background: var(--light-color);
        position: relative;
    }

    .tiny-avatar:hover[b-ejvtqvliha] {
        cursor: pointer;
        background: var(--dark-color);
        color: var(--background-color);
        transition: 0.25s;
    }

    .btn-remove-avatar[b-ejvtqvliha] {
        position: absolute;
        top: -5px;
        right: -5px;
        background: var(--light-color);
        color: var(--dark-color);
        border: none;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        font-size: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-remove-avatar:hover[b-ejvtqvliha] {
        background: var(--brand);
        color: var(--background-color);
        transition: 0.25s;
    }

    .tiny-avatar img[b-ejvtqvliha] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .tiny-avatar img + .initials[b-ejvtqvliha] {
        display: none;
    }

    /**************************** Avatar ****************************/

    .team-list[b-ejvtqvliha] {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 0.75rem;
    }

    .team-row[b-ejvtqvliha] {
        display: grid;
        grid-template-columns: 40px 1fr 100px;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 1.5rem;
    }

    .avatar[b-ejvtqvliha] {
        width: 40px;
        height: 40px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        font-weight: 700;
        color: var(--background-color);
        background: var(--brand);
        box-shadow: 0 1px 2px rgba(0,0,0,.08) inset, 0 1px 2px rgba(0,0,0,.06);
    }

    .meta .name[b-ejvtqvliha] {
        font-weight: 600;
        line-height: 1.2;
    }

    .meta .email[b-ejvtqvliha] {
        font-size: 0.85rem;
        color: var(--dark-color);
        line-height: 1.2;
        opacity: 0.7;
    }

    .button-container[b-ejvtqvliha] {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .button[b-ejvtqvliha] {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 50rem;
        padding: 0.85rem 1.25rem;
        gap: 0.5rem;
        margin-top: 1rem;
        background: var(--brand);
        color: var(--background-color);
        outline: none;
        border: none;
    }

    .button:hover[b-ejvtqvliha] {
        cursor: pointer;
        background: var(--dark-color);
        transition: 0.25s;
    }

    .button-icon[b-ejvtqvliha] {
        font-size: 0.85rem;
    }

    /**************************** Modal ****************************/

    .modal[b-ejvtqvliha] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3);
        display: block;
        z-index: 999;
    }

    .modal-content[b-ejvtqvliha] {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: var(--background-color);
        padding-top: 2rem;
        padding-bottom: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        border-radius: var(--sleek-border-radius);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        z-index: 3;
        width: 22rem;
        height: fit-content;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .invite-title[b-ejvtqvliha] {
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .invite-text-input-container[b-ejvtqvliha] {
        height: 6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .invite-text-input[b-ejvtqvliha] {
        width: 250px;
        border: none;
        outline: none;
        background: transparent;
        color: var(--dark-color);
        text-align: left;
        font-size: 1.15rem;
        font-weight: 500;
        border-bottom: 2px solid var(--light-color);
        text-align: center;
    }

    .invite-text-input:focus[b-ejvtqvliha] {
        border-bottom: 2px solid var(--brand);
    }

    .invite-text-input[b-ejvtqvliha]::placeholder {
        color: var(--light-color);
    }

    .invite-badge[b-ejvtqvliha] {
        background: var(--brand);
        color: var(--background-color);
        opacity: 0.5;
        font-weight: 600;
        padding: 0.25rem 0.5rem;
        border-radius: 999px;
        font-size: 0.75rem;
        width: fit-content;
    }

    .modal-options[b-ejvtqvliha] {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 0.75rem;
        width: 100%;
        gap: 0.5rem;
    }

    .modal-save[b-ejvtqvliha] {
        background-color: var(--brand);
        color: var(--background-color);
        padding: 0.75rem 1rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        width: 7rem;
        gap: 0.5rem;
    }

    .modal-save:hover[b-ejvtqvliha] {
        background-color: var(--dark-color);
    }

    .modal-save-error[b-ejvtqvliha] {
        background-color: var(--dark-color);
        color: var(--background-color);
        padding: 0.75rem 1rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        width: 7rem;
        gap: 0.5rem;
    }

    .modal-cancel[b-ejvtqvliha] {
        background-color: transparent;
        color: var(--dark-color);
        padding: 0.75rem 1rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        width: 7rem;
        gap: 0.5rem;
    }

    .modal-cancel:hover[b-ejvtqvliha] {
        background-color: var(--light-color);
    }

    .error[b-ejvtqvliha] {
        margin-top: 0.75rem;
        color: var(--error-color);
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .background[b-ejvtqvliha] {
        background: var(--background-color);
        min-height: 100vh;
        display: flex;
        overflow: auto;
    }

    .user-menu[b-ejvtqvliha] {
        position: fixed;
        top: 1rem;
        right: 1rem;
    }

    .fade-in[b-ejvtqvliha] {
        animation: fadeIn-b-ejvtqvliha 260ms ease-out both;
    }

    @keyframes fadeIn-b-ejvtqvliha {
        from {
            opacity: 0
        }

        to {
            opacity: 1
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .background.fade-in[b-ejvtqvliha] {
            animation: none;
        }
    }

    /**************** Title and Description ****************/

    .settings-title-group[b-ejvtqvliha] {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        z-index: 2;
        margin-bottom: 1rem;
    }

    .settings-title[b-ejvtqvliha] {
        font-size: 1.25rem;
        color: var(--dark-color);
        font-weight: 700;
    }

    .settings-description[b-ejvtqvliha] {
        font-size: 1rem;
        width: 100%;
        color: var(--dark-color);
        display: block;
    }

    /**************************** Core Listings ****************************/

    .main-container[b-ejvtqvliha] {
        max-width: 100%;
        padding: 1rem;
        height: auto;
        margin-top: 6rem;
    }

    /**************** Options ****************/

    .settings-list[b-ejvtqvliha] {
        list-style-type: none;
        margin: 0;
        width: 100%;
        padding-bottom: 2rem;
    }

    .settings-group[b-ejvtqvliha] {
        background: var(--background-color);
        border-radius: 12px;
        border: 2px solid transparent;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 0rem;
    }

    .settings-column[b-ejvtqvliha] {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .settings-item-title[b-ejvtqvliha] {
        font-weight: bold;
        font-size: 1.15rem;
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        white-space: nowrap;
    }

    .settings-item-description[b-ejvtqvliha] {
        font-size: 1rem;
        width: 100%;
        color: var(--dark-color);
        display: none;
    }

    .settings-icon[b-ejvtqvliha] {
        margin-right: 0.5rem;
        color: var(--brand);
    }

    .settings-value[b-ejvtqvliha] {
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
    }

    .icon-wrap[b-ejvtqvliha] {
        width: 20px;
        height: 20px;
        display: inline-block;
        margin-left: 0.25rem;
    }

    .text-input[b-ejvtqvliha] {
        color: var(--dark-color);
        font-size: 0.95rem;
        border: none;
        outline: none;
        text-align: right;
        background: transparent;
    }

    .long-text-input[b-ejvtqvliha] {
        width: 100%;
        color: var(--dark-color);
        font-size: 0.85rem;
        border: none;
        outline: none;
        text-align: left;
        background: transparent;
        min-height: 3rem;
        field-sizing: content;
        resize: none;
    }

    .delete-cta[b-ejvtqvliha] {
        width: 5rem;
        height: 2.75rem;
        font-size: 1rem;
        border-radius: 50rem;
        border: none;
        background: var(--error-color);
        color: var(--background-color);
        font-weight: 600;
        cursor: pointer;
    }

    .delete-cta:active[b-ejvtqvliha] {
        background: var(--dark-color);
        color: var(--background-color);
        transition: 0.25s;
    }

    /**************** Toggle Switch ****************/
    
    .switch-container[b-ejvtqvliha] {
        display: flex;
        align-items: center;
    }

    .switch[b-ejvtqvliha] {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 24px;
        margin-right: 6px;
    }

    .switch input[b-ejvtqvliha] {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider[b-ejvtqvliha] {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--dark-color);
        transition: 0.4s;
        border-radius: 24px;
    }

    .slider[b-ejvtqvliha]:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 3px;
        background-color: var(--background-color);
        transition: 0.4s;
        border-radius: 50%;
    }

    input:checked + .slider[b-ejvtqvliha] {
        background-color: var(--brand);
    }

    input:checked + .slider[b-ejvtqvliha]:before {
        transform: translateX(24px);
    }

    .slider.round[b-ejvtqvliha] {
        border-radius: 24px;
    }

    /**************** Plans ****************/

    .plans-grid[b-ejvtqvliha] {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 85%;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.25rem 0.25rem 0.5rem;
        margin: 1rem 0rem 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .plans-grid > .plan-card[b-ejvtqvliha] {
        scroll-snap-align: start;
        min-height: unset;
    }

    /* Hide the horizontal scrollbar, keep swipe */
    .plans-grid[b-ejvtqvliha] {
        -ms-overflow-style: none; /* IE/old Edge */
        scrollbar-width: none; /* Firefox */
    }

    .plans-grid[b-ejvtqvliha]::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .plan-card[b-ejvtqvliha] {
        background: var(--background-color);
        border-radius: 16px;
        padding: 1.25rem;
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 100%;
        border: 2px solid var(--light-color);
    }

    .plan-card.is-current[b-ejvtqvliha] {
        border: 2px solid var(--brand);
    }

    .plan-badge[b-ejvtqvliha] {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        background: var(--brand);
        color: var(--background-color);
        opacity: 0.5;
        font-weight: 600;
        padding: 0.25rem 0.5rem;
        border-radius: 999px;
        font-size: 0.75rem;
    }

    .plan-head .plan-name[b-ejvtqvliha] {
        font-size: 1.125rem;
        margin: 0;
    }

    .plan-sub[b-ejvtqvliha] {
        color: var(--light-color);
        font-size: 0.9rem;
        margin-top: 0.25rem;
    }

    .plan-price[b-ejvtqvliha] {
        font-size: 2rem;
        font-weight: 700;
        margin: 0.75rem 0 1rem;
    }

    .plan-price .per[b-ejvtqvliha] {
        font-size: 0.9rem;
        color: var(--dark-color);
        margin-left: 0.25rem;
        opacity: 0.7;
    }

    .plan-cta[b-ejvtqvliha] {
        width: 100%;
        height: 2.75rem;
        font-size: 1rem;
        border-radius: 10px;
        border: none;
        background: var(--brand);
        color: var(--background-color);
        font-weight: 600;
        cursor: pointer;
    }

    .plan-cta:hover[b-ejvtqvliha] {
        background: var(--dark-color);
        color: var(--background-color);
        transition: 0.25s;
    }

    .plan-cta:disabled[b-ejvtqvliha] {
        background: var(--light-color);
        color: var(--dark-color);
        cursor: default;
    }

    .plan-features[b-ejvtqvliha] {
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 0.5rem;
    }

    .plan-features i[b-ejvtqvliha] {
        color: var(--brand);
        margin-right: 0.5rem;
    }

    .plan-foot[b-ejvtqvliha] {
        margin-top: auto;
        padding-top: .75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .undo-button[b-ejvtqvliha] {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem 0.75rem;
        border-radius: 50rem;
        color: var(--dark-color);
        background: var(--confirmation-color);
    }

    .undo-button:hover[b-ejvtqvliha] {
        background: var(--dark-color);
        transition: 0.25s;
    }

    .danger-button[b-ejvtqvliha] {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem 0.75rem;
        border-radius: 50rem;
        color: var(--background-color);
        background: var(--error-color);
    }

    .danger-button:hover[b-ejvtqvliha] {
        color: var(--background-color);
        background: var(--dark-color);
        transition: 0.25s;
    }

    .empty-spacing[b-ejvtqvliha] {
        padding-bottom: 10rem;
    }

    .tiny-avatar-text-input[b-ejvtqvliha] {
        color: var(--dark-color);
        font-size: 0.95rem;
        border: none;
        outline: none;
        text-align: right;
        background: transparent;
    }

    .tiny-avatar-group[b-ejvtqvliha] {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .tiny-avatar[b-ejvtqvliha] {
        width: 3.25rem;
        height: 3.25rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: var(--dark-color);
        font-weight: 700;
        font-size: 1.5rem;
        background: var(--light-color);
        position: relative;
    }

    .tiny-avatar:hover[b-ejvtqvliha] {
        cursor: pointer;
        background: var(--dark-color);
        color: var(--background-color);
        transition: 0.25s;
    }

    .btn-remove-avatar[b-ejvtqvliha] {
        position: absolute;
        top: -5px;
        right: -5px;
        background: var(--light-color);
        color: var(--dark-color);
        border: none;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        font-size: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-remove-avatar:hover[b-ejvtqvliha] {
        background: var(--brand);
        color: var(--background-color);
        transition: 0.25s;
    }

    .tiny-avatar img[b-ejvtqvliha] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .tiny-avatar img + .initials[b-ejvtqvliha] {
        display: none;
    }

    /**************************** Avatar ****************************/

    .team-list[b-ejvtqvliha] {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 0.75rem;
    }

    .team-row[b-ejvtqvliha] {
        display: grid;
        grid-template-columns: 40px 1fr 100px;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 1.5rem;
    }

    .avatar[b-ejvtqvliha] {
        width: 40px;
        height: 40px;
        border-radius: 999px;
        display: grid;
        place-items: center;
        font-weight: 700;
        color: var(--background-color);
        background: var(--brand);
        box-shadow: 0 1px 2px rgba(0,0,0,.08) inset, 0 1px 2px rgba(0,0,0,.06);
    }

    .meta .name[b-ejvtqvliha] {
        font-weight: 600;
        line-height: 1.2;
    }

    .meta .email[b-ejvtqvliha] {
        font-size: 0.85rem;
        color: var(--dark-color);
        line-height: 1.2;
        opacity: 0.7;
    }

    .button-container[b-ejvtqvliha] {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .button[b-ejvtqvliha] {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 50rem;
        padding: 0.85rem 1.25rem;
        gap: 0.5rem;
        margin-top: 1rem;
        background: var(--brand);
        color: var(--background-color);
        outline: none;
        border: none;
    }

    .button:hover[b-ejvtqvliha] {
        cursor: pointer;
        background: var(--dark-color);
        transition: 0.25s;
    }

    .button-icon[b-ejvtqvliha] {
        font-size: 0.85rem;
    }

    /**************************** Modal ****************************/

    .modal[b-ejvtqvliha] {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0);
        animation: backdropIn-b-ejvtqvliha .28s ease forwards;
        z-index: 999;
    }

    .modal-content[b-ejvtqvliha] {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: auto;
        max-height: 75vh;
        overflow: auto;
        border-radius: 16px 16px 0 0;
        border: 1px solid var(--light-color);
        box-shadow: 0 -12px 32px rgba(0,0,0,.22);
        padding: 1.5rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
        transform: translateY(100%);
        animation: sheetIn-b-ejvtqvliha .28s cubic-bezier(.2,.7,.2,1) forwards;
        will-change: transform;
        background: var(--background-color);
    }

    .modal.closing[b-ejvtqvliha] {
        animation: backdropOut-b-ejvtqvliha .22s ease forwards;
    }

    .modal.closing .modal-content[b-ejvtqvliha] {
        animation: sheetOut-b-ejvtqvliha .22s cubic-bezier(.4,.2,.2,1) forwards;
    }

    @keyframes sheetIn-b-ejvtqvliha {
        from {
            transform: translateY(100%);
            opacity: .98;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes sheetOut-b-ejvtqvliha {
        from {
            transform: translateY(0);
            opacity: 1;
        }

        to {
            transform: translateY(100%);
            opacity: .98;
        }
    }

    @keyframes backdropIn-b-ejvtqvliha {
        from {
            background: rgba(0,0,0,0);
        }

        to {
            background: rgba(0,0,0,.35);
        }
    }

    @keyframes backdropOut-b-ejvtqvliha {
        from {
            background: rgba(0,0,0,.35);
        }

        to {
            background: rgba(0,0,0,0);
        }
    }

    .confirmation-icon[b-ejvtqvliha] {
        font-size: 5rem;
        color: var(--brand);
        padding-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-message[b-ejvtqvliha] {
        color: var(--dark-color);
        font-weight: 500;
        text-align: center;
        font-size: 20px;
        margin-bottom: 1rem;
    }

    .modal-options[b-ejvtqvliha] {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
        width: 100%;
        gap: 1rem;
    }

    .modal-save[b-ejvtqvliha] {
        background-color: var(--brand);
        color: var(--background-color);
        padding: 1rem 1.5rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 10rem;
        gap: 0.75rem;
    }

    .modal-save:active[b-ejvtqvliha] {
        background-color: var(--dark-color);
    }

    .modal-save-error[b-ejvtqvliha] {
        background-color: var(--dark-color);
        color: var(--background-color);
        padding: 1rem 1.5rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 10rem;
        gap: 0.75rem;
    }

    .modal-cancel[b-ejvtqvliha] {
        background-color: var(--light-color);
        color: var(--dark-color);
        padding: 1rem 1.5rem;
        border: none;
        border-radius: var(--sleek-border-radius);
        cursor: pointer;
        font-weight: 600;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        width: 10rem;
        gap: 0.75rem;
    }

    .invite-title[b-ejvtqvliha] {
        margin-bottom: 1rem;
    }

    .invite-text-input-container[b-ejvtqvliha] {
        height: 8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .invite-text-input[b-ejvtqvliha] {
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        color: var(--dark-color);
        text-align: left;
        font-size: 1.5rem;
        font-weight: 500;
        border-bottom: 2px solid var(--light-color);
        text-align: center;
    }

    .invite-text-input:focus[b-ejvtqvliha] {
        border-bottom: 2px solid var(--brand);
    }

    .invite-text-input[b-ejvtqvliha]::placeholder {
        color: var(--light-color);
    }

    .invite-badge[b-ejvtqvliha] {
        background: var(--brand);
        color: var(--background-color);
        opacity: 0.5;
        font-weight: 600;
        padding: 0.25rem 0.5rem;
        border-radius: 999px;
        font-size: 0.75rem;
        width: fit-content;
    }

    .error[b-ejvtqvliha] {
        margin-top: 0.75rem;
        color: var(--error-color);
    }

    .mobile-hidden[b-ejvtqvliha] {
        display: none;
    }
}
/* /Components/Pages/SignIn.razor.rz.scp.css */
/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .background[b-khvvpnhvam] {
        background: var(--background-color);
        min-height: 100vh;
        display: flex;
        overflow: auto;
    }

    .fade-in[b-khvvpnhvam] {
        animation: fadeIn 260ms ease-out both;
    }

    .auth-wrap[b-khvvpnhvam] {
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap: 2rem;
        min-height: calc(100vh - 120px);
        align-items: center;
        padding: 2rem;
    }

    .auth-hero[b-khvvpnhvam] {
        text-align: right;
    }

    .auth-hero h1[b-khvvpnhvam] {
        font-size: 2.5rem;
        color: var(--brand);
        font-weight: 700;
    }

    .auth-hero p[b-khvvpnhvam] {
        color: var(--dark-color);
    }

    .auth-panel[b-khvvpnhvam] {
        background: var(--background-color);
        padding: 2rem;
        max-width: 28rem;
        position: relative;
    }

    .auth-panel label[b-khvvpnhvam] {
        display: block;
        margin: 0.25rem 0 0.25rem;
        font-weight: 600;
    }

    .text-input[b-khvvpnhvam] {
        width: 100%;
        padding: 0.85rem;
        border: 2px solid var(--light-color);
        border-radius: var(--sleek-border-radius);
        margin-bottom: 1rem;
        font-size: 1rem;
        padding-left: 1.5rem;
        outline: none;
    }

    .text-input:focus[b-khvvpnhvam] {
        border-color: var(--brand);
    }

    .btn[b-khvvpnhvam] {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.85rem;
        border-radius: var(--sleek-border-radius);
        border: 1px solid transparent;
        cursor: pointer;
        width: 100%;
        justify-content: center;
        font-size: 1.15rem;
    }

    .btn.primary[b-khvvpnhvam] {
        background: var(--brand);
        color: var(--background-color);
    }

    .btn.primary:hover[b-khvvpnhvam] {
        background: var(--dark-color);
        transition: 0.25s ease-in;
    }

    .btn.company[b-khvvpnhvam] {
        width: 100%;
        justify-content: center;
        border: 2px solid var(--brand);
        background: var(--background-color);
        text-decoration: none;
        color: var(--brand);
    }

    .btn.company:hover[b-khvvpnhvam] {
        background: var(--dark-color);
        transition: 0.25s ease-in;
        border: 2px solid var(--dark-color);
        color: var(--background-color);
    }

    .btn.company .icon[b-khvvpnhvam], .btn.company .icon-wrap[b-khvvpnhvam] {
        width: 20px;
        height: 20px;
        display: inline-block;
    }

    .spacing[b-khvvpnhvam] {
        margin-bottom: 1rem;
    }

    .btn.link[b-khvvpnhvam] {
        background: transparent;
        border: none;
        text-decoration: none;
    }

    .or[b-khvvpnhvam] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1rem 0;
    }

    .or[b-khvvpnhvam]::before, .or[b-khvvpnhvam]::after {
        content: "";
        flex: 1;
        height: 2px;
        background: var(--light-color);
    }

    .or span[b-khvvpnhvam] {
        font-size: .9rem;
        color: var(--dark-color);
        opacity: 0.5;
        font-weight: 500;
    }

    .error[b-khvvpnhvam] {
        margin-top: 0.75rem;
        color: var(--error-color);
        position: absolute;
        top: -0.5rem;
        white-space: nowrap;
    }

    .signup-cta[b-khvvpnhvam] {
        font-size: 0.9rem;
        color: var(--dark-color);
        text-align: center;
        position: absolute;
        margin-left: 5rem;
        margin-top: 3rem;
    }

    .signup-cta .link[b-khvvpnhvam] {
        color: var(--brand);
        font-weight: 700;
        text-decoration: none;
        border-radius: var(--sleek-border-radius);
        padding: 0.5rem 1rem;
        background: var(--light-color);
        color: var(--dark-color);
        margin-left: 0.5rem;
    }

    .signup-cta .link:hover[b-khvvpnhvam] {
        text-decoration: none;
        background: var(--brand);
        color: var(--background-color);
        transition: 0.25s ease-in;
    }

    /**************** Code Input ****************/

    .open-envelope[b-khvvpnhvam] {
        font-size: 3rem;
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .title[b-khvvpnhvam] {
        font-size: 28px;
        color: var(--dark-color);
        margin-bottom: 1rem;
        text-align: center;
    }

    .code-input-container[b-khvvpnhvam] {
        text-align: center;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .code-input[b-khvvpnhvam] {
        height: 3.5rem;
        width: 3rem;
        font-size: 20px;
        text-align: center;
        background-color: var(--light-color);
        border-radius: var(--border-radius);
        border: none;
        border-style: none;
        box-shadow: 0 2px 4px 0 var(--shadow-color);
    }

    .code-input:focus[b-khvvpnhvam] {
        outline: none;
    }

    /**************** Invite Confirmation ****************/

    .confirm-banner[b-khvvpnhvam] {
        --bg: color-mix(in oklab, var(--brand, #ff7a00) 12%, white);
        --fg: var(--brand, #ff7a00);
        --ring: color-mix(in oklab, var(--brand, #ff7a00) 40%, transparent);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem 1rem;
        border-radius: 12px;
        background: var(--bg);
        border: 2px solid var(--ring);
        box-shadow: 0 6px 18px rgba(0,0,0,.06);
        color: var(--dark-color, #222);
        position: relative;
        margin-bottom: 1rem;
    }

    .confirm-banner .fa-circle-check[b-khvvpnhvam] {
        font-size: 1.5rem;
        color: var(--fg);
        margin-top: 0.125rem;
        flex: 0 0 auto;
    }

    .confirm-text[b-khvvpnhvam] {
        margin: 0;
        line-height: 1.35;
    }

    .confirm-text strong[b-khvvpnhvam] {
        color: var(--fg);
        font-weight: 700;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/
@media screen and (min-width: 992px) and (max-width: 1625px) {
    .background[b-khvvpnhvam] {
        background: var(--background-color);
        min-height: 100vh;
        display: flex;
        overflow: auto;
    }

    .fade-in[b-khvvpnhvam] {
        animation: fadeIn 260ms ease-out both;
    }

    .auth-wrap[b-khvvpnhvam] {
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap: 2rem;
        min-height: calc(100vh - 120px);
        align-items: center;
        padding: 2rem;
    }

    .auth-hero[b-khvvpnhvam] {
        text-align: right;
    }

    .auth-hero h1[b-khvvpnhvam] {
        font-size: 2.5rem;
        color: var(--brand);
        font-weight: 700;
    }

    .auth-hero p[b-khvvpnhvam] {
        color: var(--dark-color);
    }

    .auth-panel[b-khvvpnhvam] {
        background: var(--background-color);
        padding: 2rem;
        max-width: 28rem;
        position: relative;
    }

    .auth-panel label[b-khvvpnhvam] {
        display: block;
        margin: 0.25rem 0 0.25rem;
        font-weight: 600;
    }

    .text-input[b-khvvpnhvam] {
        width: 100%;
        padding: 0.85rem;
        border: 2px solid var(--light-color);
        border-radius: var(--sleek-border-radius);
        margin-bottom: 1rem;
        font-size: 1rem;
        padding-left: 1.5rem;
        outline: none;
    }

    .text-input:focus[b-khvvpnhvam] {
        border-color: var(--brand);
    }

    .btn[b-khvvpnhvam] {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.85rem;
        border-radius: var(--sleek-border-radius);
        border: 1px solid transparent;
        cursor: pointer;
        width: 100%;
        justify-content: center;
        font-size: 1.15rem;
    }

    .btn.primary[b-khvvpnhvam] {
        background: var(--brand);
        color: var(--background-color);
    }

    .btn.primary:hover[b-khvvpnhvam] {
        background: var(--dark-color);
        transition: 0.25s ease-in;
    }

    .btn.company[b-khvvpnhvam] {
        width: 100%;
        justify-content: center;
        border: 2px solid var(--brand);
        background: var(--background-color);
        text-decoration: none;
        color: var(--brand);
    }

    .btn.company:hover[b-khvvpnhvam] {
        background: var(--dark-color);
        transition: 0.25s ease-in;
        border: 2px solid var(--dark-color);
        color: var(--background-color);
    }

    .btn.company .icon[b-khvvpnhvam], .btn.company .icon-wrap[b-khvvpnhvam] {
        width: 20px;
        height: 20px;
        display: inline-block;
    }

    .spacing[b-khvvpnhvam] {
        margin-bottom: 1rem;
    }

    .btn.link[b-khvvpnhvam] {
        background: transparent;
        border: none;
        text-decoration: none;
    }

    .or[b-khvvpnhvam] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1rem 0;
    }

    .or[b-khvvpnhvam]::before, .or[b-khvvpnhvam]::after {
        content: "";
        flex: 1;
        height: 2px;
        background: var(--light-color);
    }

    .or span[b-khvvpnhvam] {
        font-size: .9rem;
        color: var(--dark-color);
        opacity: 0.5;
        font-weight: 500;
    }

    .error[b-khvvpnhvam] {
        margin-top: 0.75rem;
        color: var(--error-color);
        position: absolute;
        top: -0.5rem;
        white-space: nowrap;
    }

    .signup-cta[b-khvvpnhvam] {
        font-size: 0.9rem;
        color: var(--dark-color);
        text-align: center;
        position: absolute;
        margin-left: 5rem;
        margin-top: 3rem;
    }

    .signup-cta .link[b-khvvpnhvam] {
        color: var(--brand);
        font-weight: 700;
        text-decoration: none;
        border-radius: var(--sleek-border-radius);
        padding: 0.5rem 1rem;
        background: var(--light-color);
        color: var(--dark-color);
        margin-left: 0.5rem;
    }

    .signup-cta .link:hover[b-khvvpnhvam] {
        text-decoration: none;
        background: var(--brand);
        color: var(--background-color);
        transition: 0.25s ease-in;
    }

    /**************** Code Input ****************/

    .open-envelope[b-khvvpnhvam] {
        font-size: 3rem;
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .title[b-khvvpnhvam] {
        font-size: 28px;
        color: var(--dark-color);
        margin-bottom: 1rem;
        text-align: center;
    }

    .code-input-container[b-khvvpnhvam] {
        text-align: center;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .code-input[b-khvvpnhvam] {
        height: 3.5rem;
        width: 3rem;
        font-size: 20px;
        text-align: center;
        background-color: var(--light-color);
        border-radius: var(--border-radius);
        border: none;
        border-style: none;
        box-shadow: 0 2px 4px 0 var(--shadow-color);
    }

    .code-input:focus[b-khvvpnhvam] {
        outline: none;
    }

    /**************** Invite Confirmation ****************/

    .confirm-banner[b-khvvpnhvam] {
        --bg: color-mix(in oklab, var(--brand, #ff7a00) 12%, white);
        --fg: var(--brand, #ff7a00);
        --ring: color-mix(in oklab, var(--brand, #ff7a00) 40%, transparent);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem 1rem;
        border-radius: 12px;
        background: var(--bg);
        border: 2px solid var(--ring);
        box-shadow: 0 6px 18px rgba(0,0,0,.06);
        color: var(--dark-color, #222);
        position: relative;
        margin-bottom: 1rem;
    }

    .confirm-banner .fa-circle-check[b-khvvpnhvam] {
        font-size: 1.5rem;
        color: var(--fg);
        margin-top: 0.125rem;
        flex: 0 0 auto;
    }

    .confirm-text[b-khvvpnhvam] {
        margin: 0;
        line-height: 1.35;
    }

    .confirm-text strong[b-khvvpnhvam] {
        color: var(--fg);
        font-weight: 700;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/
@media screen and (max-width: 991px) {
    .background[b-khvvpnhvam] {
        background: var(--background-color);
        min-height: 100vh;
        display: flex;
        overflow: auto;
    }

    .fade-in[b-khvvpnhvam] {
        animation: fadeIn 260ms ease-out both;
    }

    .auth-wrap[b-khvvpnhvam] {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        height: 100vh;
    }

    .auth-hero[b-khvvpnhvam] {
        display: none;
    }

    .auth-panel[b-khvvpnhvam] {
        background: var(--background-color);
        position: relative;
        width: 100%;
    }

    .auth-panel label[b-khvvpnhvam] {
        display: block;
        margin: 0.25rem 0 0.25rem;
        font-weight: 600;
    }

    .text-input[b-khvvpnhvam] {
        width: 100%;
        padding: 0.85rem;
        border: 2px solid var(--light-color);
        border-radius: var(--sleek-border-radius);
        margin-bottom: 1rem;
        font-size: 1rem;
        padding-left: 1.5rem;
        outline: none;
    }

    .text-input:focus[b-khvvpnhvam] {
        border-color: var(--brand);
    }

    .btn[b-khvvpnhvam] {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.85rem;
        border-radius: var(--sleek-border-radius);
        border: 1px solid transparent;
        cursor: pointer;
        width: 100%;
        justify-content: center;
        font-size: 1.15rem;
    }

    .btn.primary[b-khvvpnhvam] {
        background: var(--brand);
        color: var(--background-color);
    }

    .btn.primary:hover[b-khvvpnhvam] {
        background: var(--dark-color);
        transition: 0.25s ease-in;
    }

    .btn.company[b-khvvpnhvam] {
        width: 100%;
        justify-content: center;
        border: 2px solid var(--brand);
        background: var(--background-color);
        text-decoration: none;
        color: var(--brand);
    }

    .btn.company:hover[b-khvvpnhvam] {
        background: var(--dark-color);
        transition: 0.25s ease-in;
        border: 2px solid var(--dark-color);
        color: var(--background-color);
    }

    .btn.company .icon[b-khvvpnhvam], .btn.company .icon-wrap[b-khvvpnhvam] {
        width: 20px;
        height: 20px;
        display: inline-block;
    }

    .spacing[b-khvvpnhvam] {
        margin-bottom: 1rem;
    }

    .btn.link[b-khvvpnhvam] {
        background: transparent;
        border: none;
        text-decoration: none;
    }

    .or[b-khvvpnhvam] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1rem 0;
    }

    .or[b-khvvpnhvam]::before, .or[b-khvvpnhvam]::after {
        content: "";
        flex: 1;
        height: 2px;
        background: var(--light-color);
    }

    .or span[b-khvvpnhvam] {
        font-size: .9rem;
        color: var(--dark-color);
        opacity: 0.5;
        font-weight: 500;
    }

    .error[b-khvvpnhvam] {
        margin-top: 0.75rem;
        color: var(--error-color);
        position: absolute;
        top: -0.5rem;
        white-space: nowrap;
    }

    .signup-cta[b-khvvpnhvam] {
        font-size: 0.9rem;
        color: var(--dark-color);
        text-align: center;
        position: absolute;
        margin-left: 5rem;
        margin-top: 3rem;
    }

    .signup-cta .link[b-khvvpnhvam] {
        color: var(--brand);
        font-weight: 700;
        text-decoration: none;
        border-radius: var(--sleek-border-radius);
        padding: 0.5rem 1rem;
        background: var(--light-color);
        color: var(--dark-color);
        margin-left: 0.5rem;
    }

    .signup-cta .link:hover[b-khvvpnhvam] {
        text-decoration: none;
        background: var(--brand);
        color: var(--background-color);
        transition: 0.25s ease-in;
    }

    /**************** Code Input ****************/

    .open-envelope[b-khvvpnhvam] {
        font-size: 3rem;
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .title[b-khvvpnhvam] {
        font-size: 28px;
        color: var(--dark-color);
        margin-bottom: 1rem;
        text-align: center;
    }

    .code-input-container[b-khvvpnhvam] {
        text-align: center;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

    .code-input[b-khvvpnhvam] {
        height: 3.5rem;
        width: 3rem;
        font-size: 20px;
        text-align: center;
        background-color: var(--light-color);
        border-radius: var(--border-radius);
        border: none;
        border-style: none;
        box-shadow: 0 2px 4px 0 var(--shadow-color);
    }

    .code-input:focus[b-khvvpnhvam] {
        outline: none;
    }

    /**************** Invite Confirmation ****************/

    .confirm-banner[b-khvvpnhvam] {
        --bg: color-mix(in oklab, var(--brand, #ff7a00) 12%, white);
        --fg: var(--brand, #ff7a00);
        --ring: color-mix(in oklab, var(--brand, #ff7a00) 40%, transparent);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem 1rem;
        border-radius: 12px;
        background: var(--bg);
        border: 2px solid var(--ring);
        box-shadow: 0 6px 18px rgba(0,0,0,.06);
        color: var(--dark-color, #222);
        position: relative;
        margin-bottom: 1rem;
    }

    .confirm-banner .fa-circle-check[b-khvvpnhvam] {
        font-size: 1.5rem;
        color: var(--fg);
        margin-top: 0.125rem;
        flex: 0 0 auto;
    }

    .confirm-text[b-khvvpnhvam] {
        margin: 0;
        line-height: 1.35;
    }

    .confirm-text strong[b-khvvpnhvam] {
        color: var(--fg);
        font-weight: 700;
    }
}
/* /Components/Pages/SignUp.razor.rz.scp.css */
/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .background[b-lvyck61jy1] {
        background: var(--background-color);
        min-height: 100vh;
        display: flex;
        overflow: auto;
    }

    .fade-in[b-lvyck61jy1] {
        animation: fadeIn 260ms ease-out both;
    }

    .auth-wrap[b-lvyck61jy1] {
        display: grid;
        grid-template-columns: 3fr 4fr;
        gap: 2rem;
        min-height: calc(100vh - 120px);
        align-items: center;
        padding: 2rem;
    }

    .auth-hero[b-lvyck61jy1] {
        text-align: left;
    }

    .auth-hero h1[b-lvyck61jy1] {
        font-size: 2.5rem;
        color: var(--brand);
        font-weight: 700;
    }

    .auth-hero p[b-lvyck61jy1] {
        color: var(--dark-color);
    }

    .auth-panel[b-lvyck61jy1] {
        background: var(--background-color);
        width: 100%;
        display: flex;
        justify-content: end;
    }

    .auth-window[b-lvyck61jy1] {
        padding: 2rem;
        max-width: 28rem;
        position: relative;
    }

    .text-input[b-lvyck61jy1] {
        width: 100%;
        padding: 0.85rem;
        border: 2px solid var(--light-color);
        border-radius: var(--sleek-border-radius);
        margin-bottom: 1rem;
        font-size: 1rem;
        padding-left: 1.5rem;
        outline: none;
    }

    .text-input:focus[b-lvyck61jy1] {
        border-color: var(--brand);
    }

    .btn[b-lvyck61jy1] {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.85rem;
        border-radius: var(--sleek-border-radius);
        border: 1px solid transparent;
        cursor: pointer;
        width: 100%;
        justify-content: center;
        font-size: 1.15rem;
    }

    .btn.primary[b-lvyck61jy1] {
        background: var(--brand);
        color: var(--background-color);
    }

    .btn.primary:hover[b-lvyck61jy1] {
        background: var(--dark-color);
        transition: 0.25s ease-in;
    }

    .btn.company[b-lvyck61jy1] {
        width: 100%;
        justify-content: center;
        border: 2px solid var(--brand);
        background: var(--background-color);
        text-decoration: none;
        color: var(--brand);
    }

    .btn.company:hover[b-lvyck61jy1] {
        background: var(--dark-color);
        transition: 0.25s ease-in;
        border: 2px solid var(--dark-color);
        color: var(--background-color);
    }

    .btn.company .icon[b-lvyck61jy1], .btn.company .icon-wrap[b-lvyck61jy1] {
        width: 20px;
        height: 20px;
        display: inline-block;
    }

    .spacing[b-lvyck61jy1] {
        margin-bottom: 1rem;
    }

    .btn.link[b-lvyck61jy1] {
        background: transparent;
        border: none;
        text-decoration: none;
    }

    .or[b-lvyck61jy1] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1rem 0;
    }

    .or[b-lvyck61jy1]::before, .or[b-lvyck61jy1]::after {
        content: "";
        flex: 1;
        height: 2px;
        background: var(--light-color);
    }

    .or span[b-lvyck61jy1] {
        font-size: .9rem;
        color: var(--dark-color);
        opacity: 0.5;
        font-weight: 500;
    }

    .error[b-lvyck61jy1] {
        margin-top: 0.75rem;
        color: var(--error-color);
        position: absolute;
        top: -0.5rem;
        white-space: nowrap;
    }

    .signup-cta[b-lvyck61jy1] {
        font-size: 0.9rem;
        color: var(--dark-color);
        text-align: center;
        position: absolute;
        margin-left: 5rem;
        margin-top: 3rem;
    }

    .signup-cta .link[b-lvyck61jy1] {
        color: var(--brand);
        font-weight: 700;
        text-decoration: none;
        border-radius: var(--sleek-border-radius);
        padding: 0.5rem 1rem;
        background: var(--light-color);
        color: var(--dark-color);
        margin-left: 0.5rem;
    }

    .signup-cta .link:hover[b-lvyck61jy1] {
        text-decoration: none;
        background: var(--brand);
        color: var(--background-color);
        transition: 0.25s ease-in;
    }

    .app-features[b-lvyck61jy1] {
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 0.5rem;
    }

    .app-features i[b-lvyck61jy1] {
        color: var(--brand);
        margin-right: 0.5rem;
    }

    /**************** Code Input ****************/

    .open-envelope[b-lvyck61jy1] {
        font-size: 3rem;
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .title[b-lvyck61jy1] {
        font-size: 28px;
        color: var(--dark-color);
        margin-bottom: 1rem;
        text-align: center;
    }

    .code-input-container[b-lvyck61jy1] {
        text-align: center;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .code-input[b-lvyck61jy1] {
        height: 3.5rem;
        width: 3rem;
        font-size: 20px;
        text-align: center;
        background-color: var(--light-color);
        border-radius: var(--border-radius);
        border: none;
        border-style: none;
        box-shadow: 0 2px 4px 0 var(--shadow-color);
    }

    .code-input:focus[b-lvyck61jy1] {
        outline: none;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/
@media screen and (min-width: 992px) and (max-width: 1625px) {
    .background[b-lvyck61jy1] {
        background: var(--background-color);
        min-height: 100vh;
        display: flex;
        overflow: auto;
    }

    .fade-in[b-lvyck61jy1] {
        animation: fadeIn 260ms ease-out both;
    }

    .auth-wrap[b-lvyck61jy1] {
        display: grid;
        grid-template-columns: 3fr 4fr;
        gap: 2rem;
        min-height: calc(100vh - 120px);
        align-items: center;
        padding: 2rem;
    }

    .auth-hero[b-lvyck61jy1] {
        text-align: left;
    }

    .auth-hero h1[b-lvyck61jy1] {
        font-size: 2.5rem;
        color: var(--brand);
        font-weight: 700;
    }

    .auth-hero p[b-lvyck61jy1] {
        color: var(--dark-color);
    }

    .auth-panel[b-lvyck61jy1] {
        background: var(--background-color);
        width: 100%;
        display: flex;
        justify-content: end;
    }

    .auth-window[b-lvyck61jy1] {
        padding: 2rem;
        max-width: 28rem;
        position: relative;
    }

    .text-input[b-lvyck61jy1] {
        width: 100%;
        padding: 0.85rem;
        border: 2px solid var(--light-color);
        border-radius: var(--sleek-border-radius);
        margin-bottom: 1rem;
        font-size: 1rem;
        padding-left: 1.5rem;
        outline: none;
    }

    .text-input:focus[b-lvyck61jy1] {
        border-color: var(--brand);
    }

    .btn[b-lvyck61jy1] {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.85rem;
        border-radius: var(--sleek-border-radius);
        border: 1px solid transparent;
        cursor: pointer;
        width: 100%;
        justify-content: center;
        font-size: 1.15rem;
    }

    .btn.primary[b-lvyck61jy1] {
        background: var(--brand);
        color: var(--background-color);
    }

    .btn.primary:hover[b-lvyck61jy1] {
        background: var(--dark-color);
        transition: 0.25s ease-in;
    }

    .btn.company[b-lvyck61jy1] {
        width: 100%;
        justify-content: center;
        border: 2px solid var(--brand);
        background: var(--background-color);
        text-decoration: none;
        color: var(--brand);
    }

    .btn.company:hover[b-lvyck61jy1] {
        background: var(--dark-color);
        transition: 0.25s ease-in;
        border: 2px solid var(--dark-color);
        color: var(--background-color);
    }

    .btn.company .icon[b-lvyck61jy1], .btn.company .icon-wrap[b-lvyck61jy1] {
        width: 20px;
        height: 20px;
        display: inline-block;
    }

    .spacing[b-lvyck61jy1] {
        margin-bottom: 1rem;
    }

    .btn.link[b-lvyck61jy1] {
        background: transparent;
        border: none;
        text-decoration: none;
    }

    .or[b-lvyck61jy1] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1rem 0;
    }

    .or[b-lvyck61jy1]::before, .or[b-lvyck61jy1]::after {
        content: "";
        flex: 1;
        height: 2px;
        background: var(--light-color);
    }

    .or span[b-lvyck61jy1] {
        font-size: .9rem;
        color: var(--dark-color);
        opacity: 0.5;
        font-weight: 500;
    }

    .error[b-lvyck61jy1] {
        margin-top: 0.75rem;
        color: var(--error-color);
        position: absolute;
        top: -0.5rem;
        white-space: nowrap;
    }

    .signup-cta[b-lvyck61jy1] {
        font-size: 0.9rem;
        color: var(--dark-color);
        text-align: center;
        position: absolute;
        margin-left: 5rem;
        margin-top: 3rem;
    }

    .signup-cta .link[b-lvyck61jy1] {
        color: var(--brand);
        font-weight: 700;
        text-decoration: none;
        border-radius: var(--sleek-border-radius);
        padding: 0.5rem 1rem;
        background: var(--light-color);
        color: var(--dark-color);
        margin-left: 0.5rem;
    }

    .signup-cta .link:hover[b-lvyck61jy1] {
        text-decoration: none;
        background: var(--brand);
        color: var(--background-color);
        transition: 0.25s ease-in;
    }

    .app-features[b-lvyck61jy1] {
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 0.5rem;
    }

    .app-features i[b-lvyck61jy1] {
        color: var(--brand);
        margin-right: 0.5rem;
    }

    /**************** Code Input ****************/

    .open-envelope[b-lvyck61jy1] {
        font-size: 3rem;
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .title[b-lvyck61jy1] {
        font-size: 28px;
        color: var(--dark-color);
        margin-bottom: 1rem;
        text-align: center;
    }

    .code-input-container[b-lvyck61jy1] {
        text-align: center;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .code-input[b-lvyck61jy1] {
        height: 3.5rem;
        width: 3rem;
        font-size: 20px;
        text-align: center;
        background-color: var(--light-color);
        border-radius: var(--border-radius);
        border: none;
        border-style: none;
        box-shadow: 0 2px 4px 0 var(--shadow-color);
    }

    .code-input:focus[b-lvyck61jy1] {
        outline: none;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/
@media screen and (max-width: 991px) {
    .background[b-lvyck61jy1] {
        background: var(--background-color);
        min-height: 100vh;
        display: flex;
        overflow: auto;
    }

    .fade-in[b-lvyck61jy1] {
        animation: fadeIn 260ms ease-out both;
    }

    .auth-wrap[b-lvyck61jy1] {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        height: 100vh;
    }

    .auth-hero[b-lvyck61jy1] {
        display: none;
    }

    .auth-panel[b-lvyck61jy1] {
        background: var(--background-color);
        width: 100%;
    }

    .auth-window[b-lvyck61jy1] {
        
    }

    .text-input[b-lvyck61jy1] {
        width: 100%;
        padding: 0.85rem;
        border: 2px solid var(--light-color);
        border-radius: var(--sleek-border-radius);
        margin-bottom: 1rem;
        font-size: 1rem;
        padding-left: 1.5rem;
        outline: none;
    }

    .text-input:focus[b-lvyck61jy1] {
        border-color: var(--brand);
    }

    .btn[b-lvyck61jy1] {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.85rem;
        border-radius: var(--sleek-border-radius);
        border: 1px solid transparent;
        cursor: pointer;
        width: 100%;
        justify-content: center;
        font-size: 1.15rem;
    }

    .btn.primary[b-lvyck61jy1] {
        background: var(--brand);
        color: var(--background-color);
    }

    .btn.primary:hover[b-lvyck61jy1] {
        background: var(--dark-color);
        transition: 0.25s ease-in;
    }

    .btn.company[b-lvyck61jy1] {
        width: 100%;
        justify-content: center;
        border: 2px solid var(--brand);
        background: var(--background-color);
        text-decoration: none;
        color: var(--brand);
    }

    .btn.company:hover[b-lvyck61jy1] {
        background: var(--dark-color);
        transition: 0.25s ease-in;
        border: 2px solid var(--dark-color);
        color: var(--background-color);
    }

    .btn.company .icon[b-lvyck61jy1], .btn.company .icon-wrap[b-lvyck61jy1] {
        width: 20px;
        height: 20px;
        display: inline-block;
    }

    .spacing[b-lvyck61jy1] {
        margin-bottom: 1rem;
    }

    .btn.link[b-lvyck61jy1] {
        background: transparent;
        border: none;
        text-decoration: none;
    }

    .or[b-lvyck61jy1] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 1rem 0;
    }

    .or[b-lvyck61jy1]::before, .or[b-lvyck61jy1]::after {
        content: "";
        flex: 1;
        height: 2px;
        background: var(--light-color);
    }

    .or span[b-lvyck61jy1] {
        font-size: .9rem;
        color: var(--dark-color);
        opacity: 0.5;
        font-weight: 500;
    }

    .error[b-lvyck61jy1] {
        margin-top: 0.75rem;
        color: var(--error-color);
        position: absolute;
        top: -0.5rem;
        white-space: nowrap;
    }

    .signup-cta[b-lvyck61jy1] {
        font-size: 0.9rem;
        color: var(--dark-color);
        text-align: center;
        position: absolute;
        margin-left: 5rem;
        margin-top: 3rem;
    }

    .signup-cta .link[b-lvyck61jy1] {
        color: var(--brand);
        font-weight: 700;
        text-decoration: none;
        border-radius: var(--sleek-border-radius);
        padding: 0.5rem 1rem;
        background: var(--light-color);
        color: var(--dark-color);
        margin-left: 0.5rem;
    }

    .signup-cta .link:hover[b-lvyck61jy1] {
        text-decoration: none;
        background: var(--brand);
        color: var(--background-color);
        transition: 0.25s ease-in;
    }

    .app-features[b-lvyck61jy1] {
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 0.5rem;
    }

    .app-features i[b-lvyck61jy1] {
        color: var(--brand);
        margin-right: 0.5rem;
    }

    /**************** Code Input ****************/

    .open-envelope[b-lvyck61jy1] {
        font-size: 3rem;
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .title[b-lvyck61jy1] {
        font-size: 28px;
        color: var(--dark-color);
        margin-bottom: 1rem;
        text-align: center;
    }

    .code-input-container[b-lvyck61jy1] {
        text-align: center;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

    .code-input[b-lvyck61jy1] {
        height: 3.5rem;
        width: 3rem;
        font-size: 20px;
        text-align: center;
        background-color: var(--light-color);
        border-radius: var(--border-radius);
        border: none;
        border-style: none;
        box-shadow: 0 2px 4px 0 var(--shadow-color);
    }

    .code-input:focus[b-lvyck61jy1] {
        outline: none;
    }
}
/* /Components/Pages/Software.razor.rz.scp.css */
.background[b-il3ihd31eh] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.main-container[b-il3ihd31eh] {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    flex: 1;
}

.product-details-container[b-il3ihd31eh] {
    width: 100%;
    margin: 0 auto;
}

.product-header[b-il3ihd31eh] {
    display: flex;
    justify-content: space-between;
}

.product-title[b-il3ihd31eh] {
    font-weight: 800;
    color: var(--dark-color);
}

.product-description[b-il3ihd31eh] {
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0;
}

.btn-primary[b-il3ihd31eh], .btn-primary-large[b-il3ihd31eh] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: var(--background-color);
    border-radius: 50rem;
    font-weight: 700;
    outline: none;
    border: none;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}

.btn-primary[b-il3ihd31eh] {
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-primary-large[b-il3ihd31eh] {
    width: 100%;
    gap: 8px;
    margin-bottom: 2rem;
}

.btn-primary:hover[b-il3ihd31eh], .btn-primary-large:hover[b-il3ihd31eh] {
    background: var(--brand-light);
}

.product-image-bento[b-il3ihd31eh] {
    display: flex;
    gap: 8px;
    overflow: hidden;
    border-radius: 12px;
}

.hero-image-wrapper[b-il3ihd31eh] {
    flex: 5;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.hero-image-wrapper.full-width[b-il3ihd31eh] {
    flex: 1;
}

.secondary-images-grid[b-il3ihd31eh] {
    flex: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 100%;
}

.secondary-image-wrapper[b-il3ihd31eh] {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.product-image-bento img[b-il3ihd31eh] {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.product-image-bento img:hover[b-il3ihd31eh] {
    transform: scale(1.03);
    filter: brightness(0.95);
}

.hero-image-wrapper[b-il3ihd31eh]::after, .secondary-image-wrapper[b-il3ihd31eh]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.hero-image-wrapper:hover[b-il3ihd31eh]::after, .secondary-image-wrapper:hover[b-il3ihd31eh]::after {
    opacity: 1;
}

.no-images-placeholder[b-il3ihd31eh] {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-light));
    color: white;
}

.product-split-layout[b-il3ihd31eh] {
    display: flex;
    align-items: flex-start;
}

.main-content[b-il3ihd31eh] {
    flex: 1;
    min-width: 0;
}

.main-content h2[b-il3ihd31eh] {
    color: var(--dark-color);
    margin: 0 0 1rem 0;
}

.features-list[b-il3ihd31eh] {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.features-list li[b-il3ihd31eh] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--dark-color);
}

.features-list i[b-il3ihd31eh] {
    color: #10b981;
    margin-top: 4px;
}

.chip-container[b-il3ihd31eh] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sidebar-card[b-il3ihd31eh] {
    background: white;
    border: 1px solid var(--light-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.sidebar-meta[b-il3ihd31eh] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meta-row[b-il3ihd31eh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-color);
}

.meta-row:last-child[b-il3ihd31eh] {
    border-bottom: none;
    padding-bottom: 0;
}

.meta-label[b-il3ihd31eh] {
    color: var(--medium-color);
}

.meta-value[b-il3ihd31eh] {
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.maker-link[b-il3ihd31eh] {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
}

.maker-link:hover[b-il3ihd31eh] { text-decoration: underline; }

.unclaimed-link[b-il3ihd31eh] {
    color: var(--brand);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.2s ease;
}

.unclaimed-link:hover[b-il3ihd31eh] { text-decoration-color: var(--brand); }

.lightbox-overlay[b-il3ihd31eh] {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.lightbox-header[b-il3ihd31eh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lightbox-counter[b-il3ihd31eh] {
    font-weight: 500;
    color: var(--dark-color);
}

.lightbox-close[b-il3ihd31eh] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--dark-color);
    cursor: pointer;
    transition: 0.25s;
}

.lightbox-close:hover[b-il3ihd31eh] {
    background: var(--brand);
    color: var(--background-color);
}

.lightbox-content[b-il3ihd31eh] {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.lightbox-main-image[b-il3ihd31eh] {
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.lightbox-nav[b-il3ihd31eh] {
    background: white;
    border: 1px solid var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    color: var(--dark-color);
    transition: transform 0.2s, background 0.2s;
}

.lightbox-nav:hover[b-il3ihd31eh] {
    background: var(--brand);
    color: var(--background-color);
}

.lightbox-caption[b-il3ihd31eh] {
    text-align: center;
    color: var(--medium-color);
}

.loading-wrapper[b-il3ihd31eh] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    min-height: 50vh;
}

/**************** Animations ****************/

@keyframes fadeIn-b-il3ihd31eh {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in[b-il3ihd31eh] { animation: fadeIn-b-il3ihd31eh 1s ease-out forwards; }

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {

    .main-container[b-il3ihd31eh] {
        max-width: 1024px;
        padding-top: 10rem;
    }

    .product-details-container[b-il3ihd31eh] {
        padding-bottom: 10rem;
        padding-top: 2rem;
    }

    .product-header[b-il3ihd31eh] {
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .product-title[b-il3ihd31eh] {
        font-size: 2.5rem;
    }

    .product-description[b-il3ihd31eh] {
        font-size: 1.05rem;
    }

    .btn-primary[b-il3ihd31eh] {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    .product-image-bento[b-il3ihd31eh] {
        height: 450px;
        margin-bottom: 3rem;
    }

    .product-split-layout[b-il3ihd31eh] {
        gap: 4rem;
    }

    .product-sidebar[b-il3ihd31eh] {
        width: 320px;
        position: sticky;
        top: 120px;
    }

    .empty-spacing[b-il3ihd31eh] {
        padding-top: 3rem;
    }

    .main-content h2[b-il3ihd31eh] {
        font-size: 1.5rem;
    }

    .features-list[b-il3ihd31eh] {
        grid-template-columns: 1fr 1fr;
    }

    .competitors-section[b-il3ihd31eh] {
        margin-bottom: 2rem;
    }

    .btn-primary-large[b-il3ihd31eh] {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .meta-label[b-il3ihd31eh] {
        font-size: 0.9rem;
    }

    .unclaimed-link[b-il3ihd31eh] {
        font-size: 0.85rem;
    }

    .lightbox-header[b-il3ihd31eh] {
        padding: 1.5rem 2rem;
    }

    .lightbox-counter[b-il3ihd31eh] {
        font-size: 1rem;
    }

    .lightbox-close[b-il3ihd31eh] {
        top: 2rem;
        right: 2rem;
        width: 3.5rem;
        height: 3.5rem;
        font-size: 2rem;
        position: absolute;
    }

    .lightbox-content[b-il3ihd31eh] {
        padding: 0 2rem;
    }

    .lightbox-nav[b-il3ihd31eh] {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .lightbox-caption[b-il3ihd31eh] {
        padding: 1.5rem;
        font-size: 1rem;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .main-container[b-il3ihd31eh] {
        max-width: 900px;
        padding-top: 8rem;
    }

    .product-details-container[b-il3ihd31eh] {
        padding-bottom: 6rem;
        padding-top: 2rem;
    }

    .product-header[b-il3ihd31eh] {
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .product-title[b-il3ihd31eh] {
        font-size: 2rem;
    }

    .product-description[b-il3ihd31eh] {
        font-size: 1rem;
    }

    .btn-primary[b-il3ihd31eh] {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .product-image-bento[b-il3ihd31eh] {
        height: 350px;
        margin-bottom: 2.5rem;
    }

    .product-split-layout[b-il3ihd31eh] {
        gap: 2rem;
    }

    .product-sidebar[b-il3ihd31eh] {
        width: 280px;
        position: sticky;
        top: 100px;
    }

    .empty-spacing[b-il3ihd31eh] {
        padding-top: 2.5rem;
    }

    .main-content h2[b-il3ihd31eh] {
        font-size: 1.35rem;
    }

    .features-list[b-il3ihd31eh] {
        grid-template-columns: 1fr 1fr;
    }

    .competitors-section[b-il3ihd31eh] {
        margin-bottom: 1.5rem;
    }

    .btn-primary-large[b-il3ihd31eh] {
        padding: 0.85rem;
        font-size: 1rem;
    }

    .meta-label[b-il3ihd31eh] {
        font-size: 0.85rem;
    }

    .unclaimed-link[b-il3ihd31eh] {
        font-size: 0.8rem;
    }

    .lightbox-header[b-il3ihd31eh] {
        padding: 1rem 1.5rem;
    }

    .lightbox-counter[b-il3ihd31eh] {
        font-size: 0.9rem;
    }

    .lightbox-close[b-il3ihd31eh] {
        top: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
        position: absolute;
    }

    .lightbox-content[b-il3ihd31eh] {
        padding: 0 1.5rem;
    }

    .lightbox-nav[b-il3ihd31eh] {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .lightbox-caption[b-il3ihd31eh] {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .main-container[b-il3ihd31eh] {
        padding: 0 1rem;
        padding-top: 6rem;
    }

    .product-details-container[b-il3ihd31eh] {
        padding-bottom: 4rem;
        padding-top: 1.5rem;
    }

    .product-header[b-il3ihd31eh] {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .product-title[b-il3ihd31eh] {
        font-size: 1.75rem;
    }

    .product-description[b-il3ihd31eh] {
        font-size: 0.95rem;
    }

    .btn-primary[b-il3ihd31eh] {
        width: 100%;
        padding: 0.85rem;
        font-size: 1rem;
    }

    .secondary-images-grid[b-il3ihd31eh] {
        display: none;
    }

    .product-image-bento[b-il3ihd31eh] {
        height: 250px;
        margin-bottom: 2rem;
    }

    .product-split-layout[b-il3ihd31eh] {
        flex-direction: column;
        gap: 2rem;
    }

    .product-sidebar[b-il3ihd31eh] {
        width: 100%;
        position: static;
    }

    .empty-spacing[b-il3ihd31eh] {
        padding-top: 2rem;
    }

    .main-content h2[b-il3ihd31eh] {
        font-size: 1.25rem;
    }

    .features-list[b-il3ihd31eh] {
        grid-template-columns: 1fr;
    }

    .competitors-section[b-il3ihd31eh] {
        margin-bottom: 1.5rem;
    }

    .btn-primary-large[b-il3ihd31eh] {
        padding: 1rem;
        font-size: 1.05rem;
    }

    .meta-label[b-il3ihd31eh] {
        font-size: 0.85rem;
    }

    .unclaimed-link[b-il3ihd31eh] {
        font-size: 0.85rem;
    }

    .lightbox-header[b-il3ihd31eh] {
        padding: 1rem;
    }

    .lightbox-counter[b-il3ihd31eh] {
        font-size: 0.9rem;
    }

    .lightbox-close[b-il3ihd31eh] {
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
        position: absolute;
    }

    .lightbox-content[b-il3ihd31eh] {
        padding: 0 0.5rem;
    }

    .lightbox-main-image[b-il3ihd31eh] {
        max-width: 95vw;
        max-height: 70vh;
    }

    .lightbox-nav[b-il3ihd31eh] {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .lightbox-caption[b-il3ihd31eh] {
        padding: 1rem;
        font-size: 0.85rem;
    }
}
/* /Components/Pages/Support.razor.rz.scp.css */
.background[b-qwm5ed1uo3] {
    min-height: 100vh;
    display: flex;
    overflow: auto;
    position: relative;
}

.user-menu[b-qwm5ed1uo3] {
    position: fixed;
    top: 1rem;
    right: 1rem;
}

/**************** Animations ****************/

@keyframes fadeIn-b-qwm5ed1uo3 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in[b-qwm5ed1uo3] {
    animation: fadeIn-b-qwm5ed1uo3 1s ease-out forwards;
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1626px) {
    .main-container[b-qwm5ed1uo3] {
        display: flex;
        max-width: 900px;
        margin: auto;
        height: 35rem;
        flex-direction: column;
        width: 100%;
    }

    /**************** Section Titles ****************/

    .header[b-qwm5ed1uo3] {
        text-align: center;
        margin-bottom: 3.25rem;
    }

    .title[b-qwm5ed1uo3] {
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        line-height: 1.15;
        margin: 0 0 0.75rem 0;
        color: var(--dark-color);
    }

    .subtitle[b-qwm5ed1uo3] {
        margin: 0 auto;
        max-width: 56ch;
        font-size: 1.05rem;
        line-height: 1.6;
        color: var(--dark-color);
    }

    /**************** Tabs ****************/

    .tab-option-row[b-qwm5ed1uo3] {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .tab-chip[b-qwm5ed1uo3] {
        border-radius: 50rem;
        color: var(--dark-color);
        cursor: pointer;
        font-weight: 700;
        font-size: 1rem;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light-color);
        gap: 0.5rem;
    }

    .tab-chip:hover[b-qwm5ed1uo3] {
        background: var(--brand);
        color: var(--background-color);
    }

    .tab-selected-chip[b-qwm5ed1uo3] {
        border-radius: 50rem;
        color: var(--background-color);
        cursor: pointer;
        font-weight: 700;
        font-size: 1rem;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--brand);
        gap: 0.5rem;
    }

    /**************** Common Questions ****************/

    /* List */
    .faq-list[b-qwm5ed1uo3] {
        display: grid;
        gap: 0.6rem;
        padding-bottom: 15rem;
    }

    /* Each item: transparent by default */
    .faq-item[b-qwm5ed1uo3] {
        border-radius: 14px;
        overflow: hidden;
        background: transparent;
        transition: background 180ms ease, border-color 180ms ease;
    }

    /* Only show background on hover/open */
    .faq-item:hover[b-qwm5ed1uo3],
    .faq-item[open][b-qwm5ed1uo3] {
        background: var(--light-color);
    }

    /* Question row */
    .faq-q[b-qwm5ed1uo3] {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 1.1rem;
        user-select: none;
        color: var(--dark-color);
        font-weight: 700;
    }

    .faq-q[b-qwm5ed1uo3]::-webkit-details-marker {
        display: none;
    }

    /* Chevron icon */
    .faq-chevron[b-qwm5ed1uo3] {
        width: 2rem;
        height: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        /* keep it minimal */
        background: transparent;
        border: 1px solid transparent;
        color: var(--dark-color);
        flex: 0 0 auto;
        transition: transform 220ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    /* Rotate chevron when open */
    .faq-item[open] .faq-chevron[b-qwm5ed1uo3] {
        transform: rotate(180deg);
    }

    /* Answer wrapper (smooth open/close) */
    .faq-a[b-qwm5ed1uo3] {
        padding: 1rem;
        padding-top: 0;
        color: var(--dark-color);
    }

    .faq-a-inner[b-qwm5ed1uo3] {
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transform: translateY(-6px);
        transition: max-height 260ms ease, opacity 180ms ease, transform 220ms ease;
        will-change: max-height, opacity, transform;
        padding: 0;
    }

    .faq-item[open] .faq-a-inner[b-qwm5ed1uo3] {
        max-height: 500px; /* bump if you ever add long answers */
        opacity: 1;
        transform: translateY(0);
        padding: 0 0 1.05rem 0;
    }

    .faq-a-inner p[b-qwm5ed1uo3] {
        margin: 0;
        color: var(--dark-color);
        line-height: 1.65;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 992px) and (max-width: 1625px) {
    .main-container[b-qwm5ed1uo3] {
        display: flex;
        max-width: 700px;
        margin: auto;
        height: 30rem;
        flex-direction: column;
        width: 100%;
    }

    /**************** Section Titles ****************/

    .header[b-qwm5ed1uo3] {
        text-align: center;
        margin-bottom: 3.25rem;
    }

    .title[b-qwm5ed1uo3] {
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        line-height: 1.15;
        margin: 0 0 0.75rem 0;
        color: var(--dark-color);
    }

    .subtitle[b-qwm5ed1uo3] {
        margin: 0 auto;
        max-width: 56ch;
        font-size: 1.05rem;
        line-height: 1.6;
        color: var(--dark-color);
    }

    /**************** Tabs ****************/

    .tab-option-row[b-qwm5ed1uo3] {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .tab-chip[b-qwm5ed1uo3] {
        border-radius: 50rem;
        color: var(--dark-color);
        cursor: pointer;
        font-weight: 700;
        font-size: 0.85rem;
        padding: 0.65rem 0.85rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light-color);
        gap: 0.35rem;
    }

    .tab-chip:hover[b-qwm5ed1uo3] {
        background: var(--brand);
        color: var(--background-color);
    }

    .tab-selected-chip[b-qwm5ed1uo3] {
        border-radius: 50rem;
        color: var(--background-color);
        cursor: pointer;
        font-weight: 700;
        font-size: 0.85rem;
        padding: 0.65rem 0.85rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--brand);
        gap: 0.35rem;
    }

    /**************** Common Questions ****************/

    /* List */
    .faq-list[b-qwm5ed1uo3] {
        display: grid;
        gap: 0.6rem;
        padding-bottom: 8rem;
    }

    /* Each item: transparent by default */
    .faq-item[b-qwm5ed1uo3] {
        border-radius: 14px;
        overflow: hidden;
        background: transparent;
        transition: background 180ms ease, border-color 180ms ease;
    }

    /* Only show background on hover/open */
    .faq-item:hover[b-qwm5ed1uo3],
    .faq-item[open][b-qwm5ed1uo3] {
        background: var(--light-color);
    }

    /* Question row */
    .faq-q[b-qwm5ed1uo3] {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 1.1rem;
        user-select: none;
        color: var(--dark-color);
        font-weight: 700;
    }

    .faq-q[b-qwm5ed1uo3]::-webkit-details-marker {
        display: none;
    }

    /* Chevron icon */
    .faq-chevron[b-qwm5ed1uo3] {
        width: 2rem;
        height: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        /* keep it minimal */
        background: transparent;
        border: 1px solid transparent;
        color: var(--dark-color);
        flex: 0 0 auto;
        transition: transform 220ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    /* Rotate chevron when open */
    .faq-item[open] .faq-chevron[b-qwm5ed1uo3] {
        transform: rotate(180deg);
    }

    /* Answer wrapper (smooth open/close) */
    .faq-a[b-qwm5ed1uo3] {
        padding: 1rem;
        padding-top: 0;
        color: var(--dark-color);
    }

    .faq-a-inner[b-qwm5ed1uo3] {
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transform: translateY(-6px);
        transition: max-height 260ms ease, opacity 180ms ease, transform 220ms ease;
        will-change: max-height, opacity, transform;
        padding: 0;
    }

    .faq-item[open] .faq-a-inner[b-qwm5ed1uo3] {
        max-height: 500px; /* bump if you ever add long answers */
        opacity: 1;
        transform: translateY(0);
        padding: 0 0 1.05rem 0;
    }

    .faq-a-inner p[b-qwm5ed1uo3] {
        margin: 0;
        color: var(--dark-color);
        line-height: 1.65;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 991px) {
    .main-container[b-qwm5ed1uo3] {
        width: 100%;
        max-width: 550px;
        padding: 1rem;
        height: auto;
        margin-top: 6rem;
        margin-right: auto;
        margin-left: auto;
    }

    /**************** Section Titles ****************/

    .header[b-qwm5ed1uo3] {
        text-align: center;
        margin-bottom: 3.25rem;
    }

    .title[b-qwm5ed1uo3] {
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        line-height: 1.15;
        margin: 0 0 0.75rem 0;
        color: var(--dark-color);
    }

    .subtitle[b-qwm5ed1uo3] {
        margin: 0 auto;
        max-width: 56ch;
        font-size: 1.05rem;
        line-height: 1.6;
        color: var(--dark-color);
    }

    /**************** Tabs ****************/

    .tab-option-row[b-qwm5ed1uo3] {
        display: flex;
        flex-direction: row;
        justify-content: start;
        margin-bottom: 1rem;
    }

    .tab-option-row[b-qwm5ed1uo3] {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding-bottom: 0.25rem;
    }

    .tab-option-row .tab-chip[b-qwm5ed1uo3],
    .tab-option-row .tab-selected-chip[b-qwm5ed1uo3] {
        flex: 0 0 auto;
    }

    .tab-option-row[b-qwm5ed1uo3] {
        scrollbar-width: none;
    }

    .tab-option-row[b-qwm5ed1uo3]::-webkit-scrollbar {
        display: none;
    }

    .tab-chip[b-qwm5ed1uo3] {
        border-radius: 50rem;
        color: var(--dark-color);
        cursor: pointer;
        font-weight: 700;
        font-size: 1rem;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light-color);
        gap: 0.5rem;
        white-space: nowrap;
    }

    .tab-chip:hover[b-qwm5ed1uo3] {
        background: var(--brand);
        color: var(--background-color);
    }

    .tab-selected-chip[b-qwm5ed1uo3] {
        border-radius: 50rem;
        color: var(--background-color);
        cursor: pointer;
        font-weight: 700;
        font-size: 1rem;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--brand);
        gap: 0.5rem;
        white-space: nowrap;
    }

    /**************** Common Questions ****************/

    .common-questions[b-qwm5ed1uo3] {
        padding: 6rem 2rem;
        width: 100%;
        margin: 0 auto;
        color: var(--dark-color);
    }

    /* List */
    .faq-list[b-qwm5ed1uo3] {
        display: grid;
        gap: 0.6rem;
        padding-bottom: 10rem;
    }

    /* Each item: transparent by default */
    .faq-item[b-qwm5ed1uo3] {
        border-radius: 14px;
        overflow: hidden;
        background: transparent;
        transition: background 180ms ease, border-color 180ms ease;
    }

    /* Only show background on hover/open */
    .faq-item:hover[b-qwm5ed1uo3],
    .faq-item[open][b-qwm5ed1uo3] {
        background: var(--light-color);
    }

    /* Question row */
    .faq-q[b-qwm5ed1uo3] {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 1.1rem;
        user-select: none;
        color: var(--dark-color);
        font-weight: 700;
    }

    .faq-q[b-qwm5ed1uo3]::-webkit-details-marker {
        display: none;
    }

    /* Chevron icon */
    .faq-chevron[b-qwm5ed1uo3] {
        width: 2rem;
        height: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        /* keep it minimal */
        background: transparent;
        border: 1px solid transparent;
        color: var(--dark-color);
        flex: 0 0 auto;
        transition: transform 220ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    /* Rotate chevron when open */
    .faq-item[open] .faq-chevron[b-qwm5ed1uo3] {
        transform: rotate(180deg);
    }

    /* Answer wrapper (smooth open/close) */
    .faq-a[b-qwm5ed1uo3] {
        padding: 1rem;
        padding-top: 0;
        color: var(--dark-color);
    }

    .faq-a-inner[b-qwm5ed1uo3] {
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transform: translateY(-6px);
        transition: max-height 260ms ease, opacity 180ms ease, transform 220ms ease;
        will-change: max-height, opacity, transform;
        padding: 0;
    }

    .faq-item[open] .faq-a-inner[b-qwm5ed1uo3] {
        max-height: 500px; /* bump if you ever add long answers */
        opacity: 1;
        transform: translateY(0);
        padding: 0 0 1.05rem 0;
    }

    .faq-a-inner p[b-qwm5ed1uo3] {
        margin: 0;
        color: var(--dark-color);
        line-height: 1.65;
    }
}
