/* _content/Lovies.Shared/Components/Controls/PhotoUpload.razor.rz.scp.css */
/* PhotoUpload Component Styles */

/* Container - clickable label wrapping the entire component */
.photo-upload-container[b-20bga7ffpl] {
    position: relative;
    display: block;
    border-radius: 9999px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    /* Ring effect using box-shadow - using secondary (coral pink) */
    box-shadow: 
        0 0 0 2px rgba(248, 146, 139, 0.3),
        0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.photo-upload-container:focus-within[b-20bga7ffpl] {
    box-shadow: 
        0 0 0 4px rgba(248, 146, 139, 0.4),
        0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* Disable interactions while uploading */
.photo-upload-container.uploading[b-20bga7ffpl] {
    pointer-events: none;
    opacity: 0.75;
}

/* Size variants */
.photo-upload-sm[b-20bga7ffpl] {
    width: 4rem;   /* 64px */
    height: 4rem;
}

.photo-upload-md[b-20bga7ffpl] {
    width: 6rem;   /* 96px */
    height: 6rem;
}

.photo-upload-lg[b-20bga7ffpl] {
    width: 8rem;   /* 128px */
    height: 8rem;
}

/* Image display */
.photo-upload-image[b-20bga7ffpl] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 9999px;
}

/* Hover overlay (only visible on hover when photo exists) */
.photo-upload-overlay[b-20bga7ffpl] {
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 0.4);
    color: white;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    border-radius: 9999px;
}

.photo-upload-container:hover .photo-upload-overlay[b-20bga7ffpl],
.photo-upload-container:focus-within .photo-upload-overlay[b-20bga7ffpl] {
    opacity: 1;
}

.photo-upload-overlay i[b-20bga7ffpl] {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.photo-upload-overlay-text[b-20bga7ffpl] {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Placeholder state (no photo) */
.photo-upload-placeholder[b-20bga7ffpl] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, 
        rgba(248, 146, 139, 0.1), 
        rgba(248, 146, 139, 0.05));
    transition: all 0.2s ease;
}

.photo-upload-container:hover .photo-upload-placeholder[b-20bga7ffpl] {
    background: linear-gradient(to bottom right, 
        rgba(248, 146, 139, 0.2), 
        rgba(248, 146, 139, 0.1));
}

.photo-upload-placeholder-content[b-20bga7ffpl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary, #F8928B);
}

.photo-upload-icon-wrapper[b-20bga7ffpl] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: white;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
    transition: transform 0.2s ease;
}

.photo-upload-container:hover .photo-upload-icon-wrapper[b-20bga7ffpl] {
    transform: scale(1.1);
}

.photo-upload-icon-wrapper i[b-20bga7ffpl] {
    font-size: 1.25rem;
}

.photo-upload-placeholder-text[b-20bga7ffpl] {
    font-size: 0.75rem;
    font-weight: 700;
}

/* Loading spinner */
.photo-upload-spinner[b-20bga7ffpl] {
    display: inline-block;
    width: 1.75rem;
    height: 1.75rem;
    border: 2px solid white;
    border-bottom-color: transparent;
    border-radius: 9999px;
    animation: photo-upload-spin-b-20bga7ffpl 1s linear infinite;
}

.photo-upload-spinner-primary[b-20bga7ffpl] {
    width: 2rem;
    height: 2rem;
    border-color: var(--color-secondary, #F8928B);
    border-bottom-color: transparent;
}

@keyframes photo-upload-spin-b-20bga7ffpl {
    to {
        transform: rotate(360deg);
    }
}

/* Hidden file input - covers entire area for native activation */
.photo-upload-input[b-20bga7ffpl] {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.photo-upload-input:disabled[b-20bga7ffpl] {
    cursor: not-allowed;
}
/* _content/Lovies.Shared/Components/Controls/RecordModal.razor.rz.scp.css */
/* _content/Lovies.Shared/Components/Layout/BottomNav.razor.rz.scp.css */
.lovies-bottom-nav[b-krp3kg7fxf] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    padding: 0.35rem 0.75rem;
    background: #ffffff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
    align-items: center;
    z-index: 28;
}

.lovies-bottom-link[b-krp3kg7fxf] {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #111827 !important;
    text-decoration: none;
    font-size: 0.78rem;
    padding: 0.35rem 0.25rem;
    border-radius: 10px;
    transition: background 0.15s ease, color 0.15s ease;
}

.lovies-bottom-link.active[b-krp3kg7fxf] {
    background: #111827;
    color: #ffffff !important;
}

.lovies-bottom-link:hover[b-krp3kg7fxf] {
    background: #f5f5f5;
}

.lovies-bottom-icon[b-krp3kg7fxf] {
    font-size: 1.1rem;
    line-height: 1;
}

.lovies-bottom-label[b-krp3kg7fxf] {
    color: inherit !important;
}

@media (min-width: 1024px) {
    .lovies-bottom-nav[b-krp3kg7fxf] {
        display: none;
    }
}
/* _content/Lovies.Shared/Components/Layout/MobileLayout.razor.rz.scp.css */
/* MobileLayout.razor.css - Legacy styles removed in favor of Tailwind CSS */

/* The component now uses Tailwind CSS utility classes inline for all styling.
   This file is kept for backwards compatibility but contains no active styles.
   See the .razor file for the current Tailwind-based styling. */
/* _content/Lovies.Shared/Components/Layout/NavMenu.razor.rz.scp.css */
/* Pandora-inspired mobile nav */
.nav-shell[b-c9tpz3lke2] {
    position: relative;
}

.nav-toggle[b-c9tpz3lke2] {
    display: none;
}

.nav-mobile-bar[b-c9tpz3lke2] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.nav-brand[b-c9tpz3lke2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-brand-logo[b-c9tpz3lke2] {
    height: 28px;
    width: auto;
}

.nav-actions[b-c9tpz3lke2] {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

.help-button[b-c9tpz3lke2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.help-button:hover[b-c9tpz3lke2] {
    background: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.nav-icon-btn[b-c9tpz3lke2] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
    color: inherit;
}

.nav-icon-btn:hover[b-c9tpz3lke2] {
    background: #f5f5f5;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Simple line icons */
.icon-menu[b-c9tpz3lke2],
.icon-search[b-c9tpz3lke2],
.icon-user[b-c9tpz3lke2],
.icon-close[b-c9tpz3lke2] {
    position: relative;
    display: inline-block;
}

.icon-menu[b-c9tpz3lke2],
.icon-close[b-c9tpz3lke2] {
    width: 20px;
    height: 20px;
}

.icon-menu[b-c9tpz3lke2]::before,
.icon-menu[b-c9tpz3lke2]::after,
.icon-menu span[b-c9tpz3lke2],
.icon-close[b-c9tpz3lke2]::before,
.icon-close[b-c9tpz3lke2]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #111827;
    border-radius: 999px;
}

.icon-menu[b-c9tpz3lke2]::before { top: 4px; }
.icon-menu[b-c9tpz3lke2]::after { bottom: 4px; }
.icon-menu span[b-c9tpz3lke2] { top: 9px; }

.icon-close[b-c9tpz3lke2]::before { transform: rotate(45deg); top: 9px; }
.icon-close[b-c9tpz3lke2]::after { transform: rotate(-45deg); top: 9px; }

.icon-search[b-c9tpz3lke2] {
    width: 18px;
    height: 18px;
    border: 2px solid #111827;
    border-radius: 50%;
}

.icon-search[b-c9tpz3lke2]::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    background: #111827;
    right: -6px;
    bottom: -2px;
    transform: rotate(45deg);
}

.icon-user[b-c9tpz3lke2] {
    width: 18px;
    height: 18px;
    border: 2px solid #111827;
    border-radius: 50%;
}

.icon-user[b-c9tpz3lke2]::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 8px;
    border: 2px solid #111827;
    border-top: none;
    border-radius: 0 0 10px 10px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.nav-overlay[b-c9tpz3lke2] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 15;
}

.nav-drawer[b-c9tpz3lke2] {
    position: fixed;
    top: 64px;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 64px);
    background: #ffffff;
    box-shadow: 8px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 20;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
}

.nav-toggle:not(:checked) ~ .nav-drawer[b-c9tpz3lke2] {
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    box-shadow: none;
    transform: translateX(-100%);
}

.nav-drawer-header[b-c9tpz3lke2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.nav-drawer-title[b-c9tpz3lke2] {
    font-weight: 700;
    color: #111827;
}

.nav-close[b-c9tpz3lke2] {
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.nav-close:hover[b-c9tpz3lke2] {
    background: #f5f5f5;
}

.nav-links[b-c9tpz3lke2] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-links[b-c9tpz3lke2]  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.75rem;
    border-radius: 12px;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-links[b-c9tpz3lke2]  .nav-link:hover {
    background: #f5f5f5;
}

.nav-links[b-c9tpz3lke2]  .nav-link.active {
    background: #111827;
    color: #ffffff;
}

.nav-links[b-c9tpz3lke2]  .nav-link .icon {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bi-search-nav-menu[b-c9tpz3lke2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23111827' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
}

.bi-calendar-event-nav-menu[b-c9tpz3lke2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23111827' class='bi bi-calendar-event' viewBox='0 0 16 16'%3E%3Cpath d='M11 6H9v2h2V6z'/%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v1H0V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM16 14V5H0v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-c9tpz3lke2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23111827' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'/%3E%3Cpath fill-rule='evenodd' d='M14 14s-1-1.5-6-1.5S2 14 2 14s1-4 6-4 6 4 6 4z'/%3E%3C/svg%3E");
}

.bi-people-fill-nav-menu[b-c9tpz3lke2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23111827' class='bi bi-people-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1H7zm4-6a3 3 0 1 0-2.995-3.176A3 3 0 0 0 11 8z'/%3E%3Cpath d='M4.216 14A2.238 2.238 0 0 1 4 13c0-1.355.68-2.75 1.936-3.72A5.77 5.77 0 0 0 4 9c-4 0-4 3-4 4 0 .667.333 1 1 1h3.216z'/%3E%3Cpath d='M4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5z'/%3E%3C/svg%3E");
}

.bi-gear-fill-nav-menu[b-c9tpz3lke2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23111827' class='bi bi-gear-fill' viewBox='0 0 16 16'%3E%3Cpath d='M9.605 1.05c-.413-1.4-2.797-1.4-3.21 0l-.2.682a1.464 1.464 0 0 1-2.105.872l-.616-.358c-1.183-.686-2.57.701-1.885 1.885l.359.616c.446.766.036 1.743-.872 2.105l-.683.2c-1.4.413-1.4 2.797 0 3.21l.682.2a1.464 1.464 0 0 1 .872 2.105l-.358.616c-.686 1.183.701 2.57 1.885 1.885l.616-.359a1.464 1.464 0 0 1 2.105.872l.2.683c.413 1.4 2.797 1.4 3.21 0l.2-.682a1.464 1.464 0 0 1 2.105-.872l.616.358c1.183.686 2.57-.701 1.885-1.885l-.359-.616a1.464 1.464 0 0 1 .872-2.105l.683-.2c1.4-.413 1.4-2.797 0-3.21l-.682-.2a1.464 1.464 0 0 1-.872-2.105l.358-.616c.686-1.183-.701-2.57-1.885-1.885l-.616.359a1.464 1.464 0 0 1-2.105-.872l-.2-.683zM8 10.93a2.93 2.93 0 1 1 0-5.86 2.93 2.93 0 0 1 0 5.86z'/%3E%3C/svg%3E");
}

.bi-box-arrow-right-nav-menu[b-c9tpz3lke2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23111827' class='bi bi-box-arrow-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M10 12.5a.5.5 0 0 1-.5-.5V10H5a.5.5 0 0 1 0-1h4.5V7a.5.5 0 0 1 1 0v2H15a.5.5 0 0 1 0 1h-4.5v2a.5.5 0 0 1-.5.5z'/%3E%3Cpath fill-rule='evenodd' d='M3.5 2a.5.5 0 0 0-.5.5v11a.5.5 0 0 0 .5.5H8a.5.5 0 0 1 0 1H3.5A1.5 1.5 0 0 1 2 13.5v-11A1.5 1.5 0 0 1 3.5 1H8a.5.5 0 0 1 0 1z'/%3E%3C/svg%3E");
}

.bi[b-c9tpz3lke2] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-c9tpz3lke2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23111827' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-c9tpz3lke2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23111827' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-c9tpz3lke2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23111827' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-toggle:checked ~ .nav-overlay[b-c9tpz3lke2] {
    opacity: 1;
    pointer-events: auto;
}

.nav-toggle:checked ~ .nav-drawer[b-c9tpz3lke2] {
    transform: translateX(0);
}

/* Desktop: revert to sidebar style */
@media (min-width: 1024px) {
    .nav-drawer[b-c9tpz3lke2] {
        position: fixed;
        top: 64px;
        height: calc(100vh - 64px);
        width: 260px;
        max-width: none;
        box-shadow: 8px 0 24px rgba(0, 0, 0, 0.12);
        background: #ffffff;
        padding: 1rem;
    }

    .nav-drawer-header[b-c9tpz3lke2] {
        display: flex;
    }

    .nav-links[b-c9tpz3lke2] {
        gap: 0.25rem;
    }

    .nav-links[b-c9tpz3lke2]  .nav-link {
        color: #111827;
        border-radius: 10px;
    }

    .nav-links[b-c9tpz3lke2]  .nav-link:hover {
        background: #f5f5f5;
    }

    .nav-links[b-c9tpz3lke2]  .nav-link.active {
        background: #111827;
        color: #ffffff;
    }
}
/* _content/Lovies.Shared/Components/Layout/ShellLayout.razor.rz.scp.css */
/* Shell layout that hosts the Pandora-style NavMenu for both mobile and desktop */
.shell-layout[b-jnd9bkht55] {
    min-height: 100vh;
    background: var(--color-neutral-300);
}

.shell-inner[b-jnd9bkht55] {
    display: block;
}

.shell-main[b-jnd9bkht55] {
    padding: 5rem 1.25rem 5rem;
    min-height: 100vh;
}

.shell-nav[b-jnd9bkht55] {
    position: relative;
    z-index: 25;
}

@media (min-width: 1024px) {
    .shell-inner[b-jnd9bkht55] {
        display: flex;
        align-items: flex-start;
        gap: 0;
        padding: 1.5rem;
    }

    .shell-nav[b-jnd9bkht55] {
        width: 0;
        flex-shrink: 0;
    }

    .shell-main[b-jnd9bkht55] {
        flex: 1;
        padding: 5rem 2rem 2.5rem;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
    }
}

/* Bottom nav (mobile) */
@media (min-width: 1024px) {
    .shell-main[b-jnd9bkht55] {
        padding-bottom: 2rem;
    }
}
/* _content/Lovies.Shared/Components/Pages/Authentication/ForgotPassword.razor.rz.scp.css */
.forgot-password-page[b-mji02sgmq1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: transparent;
    color: var(--text-primary);
    padding: 2rem;
    overflow: hidden;
}

@keyframes gradientBackground-b-mji02sgmq1 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.page-title[b-mji02sgmq1] {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.page-description[b-mji02sgmq1] {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 400px;
}

.input-group[b-mji02sgmq1] {
    width: 100%;
    max-width: 400px;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.input-label[b-mji02sgmq1] {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.input-field[b-mji02sgmq1] {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
}

.input-field:focus[b-mji02sgmq1] {
    border-color: var(--button-secondary-bg);
}

.confirmation-message[b-mji02sgmq1] {
    color: var(--status-info);
    font-size: 1rem;
    margin-top: 1.5rem;
    text-align: center;
    max-width: 400px;
}

.forgot-password-card[b-mji02sgmq1] {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid var(--border-card);
}

.back-to-login[b-mji02sgmq1] {
    font-size: 14px;
    color: var(--color-teal-blue);
    margin-bottom: 1rem;
    text-decoration: none;
}
/* _content/Lovies.Shared/Components/Pages/Authentication/Landing.razor.rz.scp.css */
@keyframes gradientBackground-b-uvu1nlxj1b {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.input-group[b-uvu1nlxj1b] {
    margin-bottom: 16px;
    justify-content: center;
}

.input-label[b-uvu1nlxj1b] {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: var(--text-primary);
    align-self: center
}

.input-icon[b-uvu1nlxj1b] {
    display: flex;
    align-items: center;
    background: var(--surface-primary);
    border-radius: 4px;
    padding: 8px;
    border: 1px solid var(--border-light);
}

.input-field[b-uvu1nlxj1b] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px;
    outline: none;
    color: var(--text-primary);
}

.icon-user[b-uvu1nlxj1b], .icon-lock[b-uvu1nlxj1b], .icon-eye-toggle[b-uvu1nlxj1b], .icon-arrow-right[b-uvu1nlxj1b] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    cursor: pointer;
    fill: var(--text-secondary);
}

.error-message[b-uvu1nlxj1b] {
    color: var(--status-error);
    font-size: 12px;
    margin-bottom: 12px;
}

.login-button[b-uvu1nlxj1b] {
    width: 100%;
    padding: 12px;
    background: var(--button-primary-bg);
    color: var(--button-primary-text);
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-button:hover[b-uvu1nlxj1b] {
    background: var(--hover-bright-green);
}

.spinner-border[b-uvu1nlxj1b] {
    width: 20px;
    height: 20px;
    border: 3px solid var(--color-light-gray);
    border-top: 3px solid var(--button-primary-bg);
    border-radius: 50%;
    animation: spin-b-uvu1nlxj1b 1s linear infinite;
}

@keyframes spin-b-uvu1nlxj1b {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-button-text[b-uvu1nlxj1b] {
    color: white;
    text-shadow:
            -0.25px -0.2px 0 #000,
            0.2px -0.2px 0 #000,
            -0.2px 0.2px 0 #000,
            0.2px 0.2px 0 #000;
}

.forgot-password-container[b-uvu1nlxj1b] {
    text-align: right;
    margin-top: 8px;
}

.forgot-password-link[b-uvu1nlxj1b] {
    color: var(--button-secondary-bg);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password-link:hover[b-uvu1nlxj1b] {
    color: var(--hover-teal-blue);
    text-decoration: underline;
}

.sign-in-button-container[b-uvu1nlxj1b] {
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
}
/* _content/Lovies.Shared/Components/Pages/Authentication/Login.razor.rz.scp.css */
@keyframes gradientBackground-b-0qcjit7rta {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.input-group[b-0qcjit7rta] {
    margin-bottom: 16px;
    justify-content: center;
}

.input-label[b-0qcjit7rta] {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: var(--text-primary);
    align-self: center
}

.input-icon[b-0qcjit7rta] {
    display: flex;
    align-items: center;
    background: var(--surface-primary);
    border-radius: 4px;
    padding: 8px;
    border: 1px solid var(--border-light);
}

.input-field[b-0qcjit7rta] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px;
    outline: none;
    color: var(--text-primary);
}

.icon-user[b-0qcjit7rta], .icon-lock[b-0qcjit7rta], .icon-eye-toggle[b-0qcjit7rta], .icon-arrow-right[b-0qcjit7rta] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    cursor: pointer;
    fill: var(--text-secondary);
}

.error-message[b-0qcjit7rta] {
    color: var(--status-error);
    font-size: 12px;
    margin-bottom: 12px;
}

.login-button[b-0qcjit7rta] {
    width: 100%;
    padding: 12px;
    background: var(--button-primary-bg);
    color: var(--button-primary-text);
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-button:hover[b-0qcjit7rta] {
    background: var(--hover-bright-green);
}

.spinner-border[b-0qcjit7rta] {
    width: 20px;
    height: 20px;
    border: 3px solid var(--color-light-gray);
    border-top: 3px solid var(--button-primary-bg);
    border-radius: 50%;
    animation: spin-b-0qcjit7rta 1s linear infinite;
}

@keyframes spin-b-0qcjit7rta {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-button-text[b-0qcjit7rta] {
    color: white;
    text-shadow:
            -0.25px -0.2px 0 #000,
            0.2px -0.2px 0 #000,
            -0.2px 0.2px 0 #000,
            0.2px 0.2px 0 #000;
}

.forgot-password-container[b-0qcjit7rta] {
    text-align: right;
    margin-top: 8px;
}

.forgot-password-link[b-0qcjit7rta] {
    color: var(--button-secondary-bg);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password-link:hover[b-0qcjit7rta] {
    color: var(--hover-teal-blue);
    text-decoration: underline;
}

.sign-in-button-container[b-0qcjit7rta] {
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
}
/* _content/Lovies.Shared/Components/Pages/Authentication/PageNotFound.razor.rz.scp.css */
.page-not-found[b-h581492fqx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: transparent;
    color: var(--text-primary);
    text-align: center;
    padding: 2rem;
}

.icon-container[b-h581492fqx] {
    margin-bottom: 1.5rem;
}

.error-icon[b-h581492fqx] {
    width: 480px;
}

@keyframes bounce-b-h581492fqx {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.message-container[b-h581492fqx] {
    max-width: 600px;
}

.error-title[b-h581492fqx] {
    font-size: 2.5rem;
    color: var(--color-dark-blue);
    margin: 0;
}

.error-description[b-h581492fqx] {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 1rem 0;
}

.button-container[b-h581492fqx] {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.home-button[b-h581492fqx], .back-button[b-h581492fqx] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-button[b-h581492fqx] {
    background: var(--button-primary-bg);
    color: var(--button-primary-text);
}

.back-button[b-h581492fqx] {
    background: var(--button-secondary-bg);
    color: var(--button-secondary-text);
}

.home-button:hover[b-h581492fqx] {
    background: var(--hover-bright-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.back-button:hover[b-h581492fqx] {
    background: var(--hover-teal-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-container[b-h581492fqx] {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 10px;
    margin: 5px;
    background-color: white;
}
/* _content/Lovies.Shared/Components/Pages/Authentication/Register.razor.rz.scp.css */
@keyframes gradientBackground-b-zpymsisqfl {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.input-group[b-zpymsisqfl] {
    margin-bottom: 16px;
    justify-content: center;
}

.input-label[b-zpymsisqfl] {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: var(--text-primary);
    align-self: center
}

.input-icon[b-zpymsisqfl] {
    display: flex;
    align-items: center;
    background: var(--surface-primary);
    border-radius: 4px;
    padding: 8px;
    border: 1px solid var(--border-light);
}

.input-field[b-zpymsisqfl] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px;
    outline: none;
    color: var(--text-primary);
}

.icon-user[b-zpymsisqfl], .icon-lock[b-zpymsisqfl], .icon-eye-toggle[b-zpymsisqfl], .icon-arrow-right[b-zpymsisqfl] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    cursor: pointer;
    fill: var(--text-secondary);
}

.error-message[b-zpymsisqfl] {
    color: var(--status-error);
    font-size: 12px;
    margin-bottom: 12px;
}

.login-button[b-zpymsisqfl] {
    width: 100%;
    padding: 12px;
    background: var(--button-primary-bg);
    color: var(--button-primary-text);
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-button:hover[b-zpymsisqfl] {
    background: var(--hover-bright-green);
}

.spinner-border[b-zpymsisqfl] {
    width: 20px;
    height: 20px;
    border: 3px solid var(--color-light-gray);
    border-top: 3px solid var(--button-primary-bg);
    border-radius: 50%;
    animation: spin-b-zpymsisqfl 1s linear infinite;
}

@keyframes spin-b-zpymsisqfl {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.login-button-text[b-zpymsisqfl] {
    color: white;
    text-shadow:
            -0.25px -0.2px 0 #000,
            0.2px -0.2px 0 #000,
            -0.2px 0.2px 0 #000,
            0.2px 0.2px 0 #000;
}

.forgot-password-container[b-zpymsisqfl] {
    text-align: right;
    margin-top: 8px;
}

.forgot-password-link[b-zpymsisqfl] {
    color: var(--button-secondary-bg);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password-link:hover[b-zpymsisqfl] {
    color: var(--hover-teal-blue);
    text-decoration: underline;
}

.sign-in-button-container[b-zpymsisqfl] {
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.custom-grid-override[b-zpymsisqfl] {
    grid-template-rows: auto 1fr;
    grid-template-columns: revert;
    justify-content: start;
    gap: 0;
    text-align: start;
    padding: 20px 0;
}
/* _content/Lovies.Shared/Components/Pages/Dashboard.razor.rz.scp.css */
.bg-sidebar[b-qpfhlm4zki] {
    background-color: var(--bg-sidebar);
    min-height: 100vh;
    padding: 1rem;
}

.text-primary[b-qpfhlm4zki] {
    color: var(--text-primary);
}

.bg-card[b-qpfhlm4zki] {
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 1rem;
}

.bg-header-footer[b-qpfhlm4zki] {
    background-color: var(--bg-header-footer);
}

.badge.bg-status-success[b-qpfhlm4zki] {
    background-color: var(--status-success);
}

.badge.bg-status-info[b-qpfhlm4zki] {
    background-color: var(--status-info);
}
/* _content/Lovies.Shared/Components/Pages/Home.razor.rz.scp.css */
.dashboard-page[b-6fr9jzgyoq] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.summary-cards[b-6fr9jzgyoq] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.summary-card[b-6fr9jzgyoq] {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
}

.summary-card h2[b-6fr9jzgyoq] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.summary-card p[b-6fr9jzgyoq] {
    font-size: 1.75rem;
    font-weight: 700;
}

.recent-activity[b-6fr9jzgyoq] {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.recent-activity h2[b-6fr9jzgyoq] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.recent-activity ul[b-6fr9jzgyoq] {
    list-style-type: none;
    padding: 0;
}

.recent-activity li[b-6fr9jzgyoq] {
    margin-bottom: 0.75rem;
}

.overview-section[b-6fr9jzgyoq] {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.overview-section h2[b-6fr9jzgyoq] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pie-charts[b-6fr9jzgyoq] {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.chart-container h3[b-6fr9jzgyoq] {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quick-actions[b-6fr9jzgyoq] {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.quick-actions h2[b-6fr9jzgyoq] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.quick-action-button[b-6fr9jzgyoq] {
    @apply bg-green-500 hover:bg-green-600 text-white font-medium py-2 px-4 rounded-md;
}

.announcements[b-6fr9jzgyoq] {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.announcements h2[b-6fr9jzgyoq] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.chart-container[b-6fr9jzgyoq] {
    max-width: 100%;
    margin: auto;
}

.recharts-responsive-container[b-6fr9jzgyoq] {
    width: 100%;
    height: 300px;
}

.recharts-legend-wrapper ul[b-6fr9jzgyoq] {
    display: flex;
    justify-content: center;
    padding: 0;
    list-style-type: none;
}

.recharts-legend-item[b-6fr9jzgyoq] {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.recharts-legend-item svg[b-6fr9jzgyoq] {
    margin-right: 4px;
}
/* _content/Lovies.Shared/Components/Pages/Mobile/EmployeeCompleteProfile.razor.rz.scp.css */
/* EmployeeProfile.razor.css - Legacy styles removed in favor of Tailwind CSS */

/* The component now uses Tailwind CSS utility classes inline for all styling.
   This file is kept for backwards compatibility but contains no active styles.
   See the .razor file for the current Tailwind-based styling. */

/* _content/Lovies.Shared/Components/Pages/Mobile/EmployeeSkills.razor.rz.scp.css */
.skills-list[b-e7krcguxmj] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-list li[b-e7krcguxmj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border: 1px solid var(--color-light-gray);
    border-radius: 0.5rem;
    background: var(--color-white);
}

.skill-name[b-e7krcguxmj] {
    font-size: 1rem;
    color: var(--text-primary);
}

.btn-danger[b-e7krcguxmj] {
    background-color: #e74c3c;
    color: var(--color-white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-danger:hover[b-e7krcguxmj] {
    background-color: #c0392b;
}

:root[b-e7krcguxmj] {
    /* Reusing colors from previous design */
    --color-dark-blue: #1C355B;
    --color-bright-green: #7AC943;
    --color-teal-blue: #009BA5;
    --color-light-gray: #E6E6E6;
    --color-white: #FFFFFF;
    --text-primary: var(--color-dark-blue);
    --text-secondary: #555555;
}

.skills-container[b-e7krcguxmj] {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--color-dark-blue), var(--color-teal-blue));
    padding: 2rem;
}

.skills-content[b-e7krcguxmj] {
    background: var(--color-white);
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    animation: slideUp-b-e7krcguxmj 0.5s ease-out;
    min-height: 100vh;
}

.skills-header[b-e7krcguxmj] {
    text-align: center;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 10px;
}

.skills-header h1[b-e7krcguxmj] {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.skills-header p[b-e7krcguxmj] {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.skills-section[b-e7krcguxmj] {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-light-gray);
}

.skills-section h3[b-e7krcguxmj] {
    color: var(--color-teal-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.preference-group[b-e7krcguxmj] {
    margin-bottom: 1rem;
}

.preference-toggle[b-e7krcguxmj] {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.preference-toggle label[b-e7krcguxmj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-primary);
}

.preference-toggle input[type="checkbox"][b-e7krcguxmj] {
    appearance: none;
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid var(--color-teal-blue);
    border-radius: 0.25rem;
    outline: none;
    cursor: pointer;
    position: relative;
}

.preference-toggle input[type="checkbox"]:checked[b-e7krcguxmj] {
    background-color: var(--color-bright-green);
    border-color: var(--color-bright-green);
}

.preference-toggle input[type="checkbox"]:checked[b-e7krcguxmj]::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-weight: bold;
}

.preference-details[b-e7krcguxmj] {
    margin-left: 2rem;
    margin-top: 0.5rem;
}

.slide-in[b-e7krcguxmj] {
    animation: slideIn-b-e7krcguxmj 0.3s ease-out;
}

.form-group[b-e7krcguxmj] {
    margin-bottom: 1rem;
}

.form-group label[b-e7krcguxmj] {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-control[b-e7krcguxmj] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-light-gray);
    border-radius: 0.5rem;
    transition: border-color 0.3s ease;
}

.form-actions[b-e7krcguxmj] {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary[b-e7krcguxmj] {
    background: var(--color-bright-green);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover[b-e7krcguxmj] {
    background: #6BB537;
}

@keyframes slideUp-b-e7krcguxmj {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn-b-e7krcguxmj {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.button-secondary-container[b-e7krcguxmj] {
    justify-content: end;
    width: 100%;
    display: flex;
    align-items: end;
}

.combobox-container[b-e7krcguxmj] {
    height: 70vh;
}
/* _content/Lovies.Shared/Components/Pages/Skills.razor.rz.scp.css */
.button-primary[b-02g8rkebpn] {
    background-color: var(--button-primary-bg);
    color: var(--button-primary-text);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.no-records-found[b-02g8rkebpn] {
    text-align: center;
    color: var(--text-secondary);
    padding: 1rem;
    font-size: 1rem;
    margin: 20px 0;
}

.actions-container[b-02g8rkebpn] {
    display: flex;
    justify-content: flex-end;
}

.manage-skills-page[b-02g8rkebpn] {
    padding: 2rem;
    font-family: Arial, sans-serif;
}
/* _content/Lovies.Shared/Components/Pages/Users.razor.rz.scp.css */
.manage-job-titles-page[b-3b6zg8j25m] {
    padding: 2rem;
    font-family: Arial, sans-serif;
}

.job-titles-table[b-3b6zg8j25m] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.job-titles-table th[b-3b6zg8j25m], .job-titles-table td[b-3b6zg8j25m] {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    text-align: left;
}

.no-records[b-3b6zg8j25m] {
    text-align: center;
    color: var(--text-secondary);
}

.modal-overlay[b-3b6zg8j25m] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content[b-3b6zg8j25m] {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.modal-buttons[b-3b6zg8j25m] {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.no-records-found[b-3b6zg8j25m] {
    text-align: center;
    color: var(--text-secondary);
    padding: 1rem;
    font-size: 1rem;
    margin: 20px 0;
}

.actions-container[b-3b6zg8j25m] {
    display: flex;
    justify-content: flex-end;
}
