@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* _content/LuxeIQ.Web/Components/Helpers/File/FileUpload.razor.rz.scp.css */
/* Define Color Palette */
:root[b-d7k2jzkd6g] {
    --primary-text: #212121; /* Main text color */
    --secondary-text: #9094AE; /* Secondary text */
    --accent: #14E4BD; /* Accent color (e.g. for progress, highlights) */
    --dark-bg: #262338; /* Dark background, if needed */
    --light-bg: #ffffff; /* White background */
    --border-color: #d6d5d5; /* Subtle border */
    --widget-bg: #f8f8f8; /* Light widget background, optional */
}

/* File Input Styling */
input.form-control[b-d7k2jzkd6g] {
    border: 1px solid var(--border-color);
    color: var(--primary-text);
}

/* Widget Container: for uploading status and file details */
.widget-container[b-d7k2jzkd6g] {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
} 

    /* Text Styles inside widget containers */
    .widget-container p[b-d7k2jzkd6g] {
        color: var(--primary-text);
        margin-bottom: 0.75rem;
        font-weight: 500;
    }

/* Progress Element Styling */
progress[b-d7k2jzkd6g] {
    width: 100%;
    height: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    /* Fallback background */
    background-color: var(--widget-bg);
}

    /* Custom progress bar styling for WebKit browsers */
    progress[b-d7k2jzkd6g]::-webkit-progress-bar {
        background-color: var(--widget-bg);
        border-radius: 0.5rem;
    }

    progress[b-d7k2jzkd6g]::-webkit-progress-value {
        background-color: var(--accent);
        border-radius: 0.5rem;
    }

    /* Custom progress bar styling for Firefox */
    progress[b-d7k2jzkd6g]::-moz-progress-bar {
        background-color: var(--accent);
        border-radius: 0.5rem;
    }

/* Small text for percentages and file sizes */
.widget-container .small[b-d7k2jzkd6g] {
    color: var(--secondary-text);
}

/* Style for the delete (edit) button */
.btn.edit-btn[b-d7k2jzkd6g] {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--accent);
    padding: 0;
    cursor: pointer;
}

    /* Hover effect for the delete button */
    .btn.edit-btn:hover[b-d7k2jzkd6g] {
        color: var(--dark-bg);
    }

/* Extra spacing for rows inside widgets */
.widget-container .row[b-d7k2jzkd6g] {
    margin-bottom: 0.5rem;
}

/* Confirm Button using the accent color */
.btn-confirm[b-d7k2jzkd6g] {
    background-color: #9094AE;
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-secondary[b-d7k2jzkd6g] {
    background-color: #9094AE;
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}


.btn-dark[b-d7k2jzkd6g] {
    background-color: #212121;
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .btn-confirm:hover[b-d7k2jzkd6g] {
        background-color: #9094AE;
    }

/* Delete Button using an error red tone */
.btn-delete[b-d7k2jzkd6g] {
    background-color: #FF0000;
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .btn-delete:hover[b-d7k2jzkd6g] {
        background-color: #CC0000;
    }
/* _content/LuxeIQ.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* Optionally include design system tokens if not globally defined */
/*
:root {
  --font-family: 'Inter', sans-serif;
  --primary-text: #212121;
  --secondary-text: #263238;
  --tertiary-text: #90A4AE;
  --disabled-text: #90A4AE;
  --cta-bg: #1E4BED;
  --cta-text: #FFFFFF;
  --error-color: #FF0000;
  --accent-border: #263238;
  --foreground: #212121;
  --background: #FFFFFF;
}
*/

.page[b-9mhi8khg75] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-9mhi8khg75] {
    flex: 1;
}

/* Sidebar updated to use a dark gradient from the palette */
.sidebar[b-9mhi8khg75] {
    background-image: linear-gradient(180deg, var(--foreground, #212121) 0%, var(--secondary-text, #263238) 70%);
}

/* Top-row updated to use the primary dark background with a subtle border */
.top-row[b-9mhi8khg75] {
    background-color: var(--foreground, #212121);
    border-bottom: 1px solid #3A3658;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    /* Ensure header text is visible on the dark background */
    color: var(--cta-text, #FFFFFF);
}

    /* In the top-row, force header links and button links to be white */
    .top-row[b-9mhi8khg75]  a,
    .top-row[b-9mhi8khg75]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
        color: var(--cta-text, #FFFFFF);
    }

        .top-row[b-9mhi8khg75]  a:hover,
        .top-row[b-9mhi8khg75]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-9mhi8khg75]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-9mhi8khg75] {
        justify-content: space-between;
    }

        .top-row[b-9mhi8khg75]  a,
        .top-row[b-9mhi8khg75]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-9mhi8khg75] {
        flex-direction: row;
    }

    .sidebar[b-9mhi8khg75] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-9mhi8khg75] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-9mhi8khg75]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-9mhi8khg75], article[b-9mhi8khg75] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Error UI updated to use the error red from the palette with white text */
#blazor-error-ui[b-9mhi8khg75] {
    background: var(--error-color, #FF0000);
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: var(--cta-text, #FFFFFF);
}

    #blazor-error-ui .dismiss[b-9mhi8khg75] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


.sidebar[b-9mhi8khg75] {
    background-color: #212121;
    background-image: none !important;
}
/* _content/LuxeIQ.Web/Components/Layout/NavMenu.razor.rz.scp.css */
/* Keep the sidebar dark */
.nav-scrollable[b-xpphwu5vle] {
    background-color: var(--foreground, #212121); /* or #263238 if preferred */
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-xpphwu5vle] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-xpphwu5vle] {
        display: none;
    }

    .nav-scrollable[b-xpphwu5vle] {
        display: block;
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* Navigation item structure */
.nav-item[b-xpphwu5vle] {
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: center;
}

    /* Navigation links (centered content) */
    .nav-item[b-xpphwu5vle]  .nav-link,
    .nav-item[b-xpphwu5vle]  .logout-btn,
    .logout-btn[b-xpphwu5vle] {
        display: flex;
        flex-direction: row;
        justify-content: center; /* center horizontally */
        align-items: center; /* center vertically */
        width: 100%;
        max-width: 200px;
        text-align: center;
        padding: 0.75rem;
        color: var(--cta-text, #FFFFFF);
        background: none;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.2s ease;
        margin: 0 auto; /* center block in nav */
    }

        /* Add spacing for icons */
        .nav-item[b-xpphwu5vle]  .nav-link span.bi {
            margin-right: 0.5rem;
            display: inline-block;
            min-width: 1.25rem;
            height: 1.25rem;
            background-size: cover;
        }

        /* Active + hover states */
        .nav-item[b-xpphwu5vle]  .nav-link.active {
            background-color: rgba(30, 75, 237, 0.37);
        }

        .nav-item[b-xpphwu5vle]  .nav-link:hover,
        .logout-btn:hover[b-xpphwu5vle] {
            background-color: rgba(30, 75, 237, 0.1);
        }

    /* Optional spacing between items */
    .nav-item:first-of-type[b-xpphwu5vle] {
        margin-top: 1rem;
    }

    .nav-item:last-of-type[b-xpphwu5vle] {
        margin-bottom: 1rem;
    }





/* Icon base styling remains unchanged */
.bi[b-xpphwu5vle] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

/* Icon definitions using white remain unchanged */
.bi-house-door-fill-nav-menu[b-xpphwu5vle] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' 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-xpphwu5vle] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' 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-people-fill-nav-menu[b-xpphwu5vle] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' 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 1zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5.784 6A2.24 2.24 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.3 6.3 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1zM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5'/%3E%3C/svg%3E");
}

.bi-database-fill-nav-menu[b-xpphwu5vle] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-database-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3.904 1.777C4.978 1.289 6.427 1 8 1s3.022.289 4.096.777C13.125 2.245 14 2.993 14 4s-.875 1.755-1.904 2.223C11.022 6.711 9.573 7 8 7s-3.022-.289-4.096-.777C2.875 5.755 2 5.007 2 4s.875-1.755 1.904-2.223'/%3E%3Cpath d='M2 6.161V7c0 1.007.875 1.755 1.904 2.223C4.978 9.71 6.427 10 8 10s3.022-.289 4.096-.777C13.125 8.755 14 8.007 14 7v-.839c-.457.432-1.004.751-1.49.972C11.278 7.693 9.682 8 8 8s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972'/%3E%3Cpath d='M2 9.161V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13s3.022-.289 4.096-.777C13.125 11.755 14 11.007 14 10v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972'/%3E%3Cpath d='M2 12.161V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16s3.022-.289 4.096-.777C13.125 14.755 14 14.007 14 13v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-xpphwu5vle] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' 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");
}

/* _content/LuxeIQ.Web/Components/Login/Logout.razor.rz.scp.css */
/* Keep the sidebar dark */
.nav-scrollable[b-t43x88qk3f] {
    background-color: var(--foreground, #212121); /* or #263238 if preferred */
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-t43x88qk3f] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-t43x88qk3f] {
        display: none;
    }

    .nav-scrollable[b-t43x88qk3f] {
        display: block;
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* Navigation item structure */
.nav-item[b-t43x88qk3f] {
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: center;
}

    /* Navigation links (centered content) */
    .nav-item[b-t43x88qk3f]  .nav-link,
    .nav-item[b-t43x88qk3f]  .logout-btn,
    .logout-btn[b-t43x88qk3f] {
        display: flex;
        flex-direction: row;
        justify-content: center; /* center horizontally */
        align-items: center; /* center vertically */
        width: 100%;
        max-width: 200px;
        text-align: center;
        padding: 0.75rem;
        color: var(--cta-text, #FFFFFF);
        background: none;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.2s ease;
        margin: 0 auto; /* center block in nav */
    }

        /* Add spacing for icons */
        .nav-item[b-t43x88qk3f]  .nav-link span.bi {
            margin-right: 0.5rem;
            display: inline-block;
            min-width: 1.25rem;
            height: 1.25rem;
            background-size: cover;
        }

        /* Active + hover states */
        .nav-item[b-t43x88qk3f]  .nav-link.active {
            background-color: rgba(30, 75, 237, 0.37);
        }

        .nav-item[b-t43x88qk3f]  .nav-link:hover,
        .logout-btn:hover[b-t43x88qk3f] {
            background-color: rgba(30, 75, 237, 0.1);
        }

    /* Optional spacing between items */
    .nav-item:first-of-type[b-t43x88qk3f] {
        margin-top: 1rem;
    }

    .nav-item:last-of-type[b-t43x88qk3f] {
        margin-bottom: 1rem;
    }

/* These icon definitions remain unchanged, as they already use white icons */
.bi-house-door-fill-nav-menu[b-t43x88qk3f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' 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-t43x88qk3f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' 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-people-fill-nav-menu[b-t43x88qk3f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' 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 1zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5.784 6A2.24 2.24 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.3 6.3 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1zM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5'/%3E%3C/svg%3E");
}

.bi-database-fill-nav-menu[b-t43x88qk3f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-database-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3.904 1.777C4.978 1.289 6.427 1 8 1s3.022.289 4.096.777C13.125 2.245 14 2.993 14 4s-.875 1.755-1.904 2.223C11.022 6.711 9.573 7 8 7s-3.022-.289-4.096-.777C2.875 5.755 2 5.007 2 4s.875-1.755 1.904-2.223'/%3E%3Cpath d='M2 6.161V7c0 1.007.875 1.755 1.904 2.223C4.978 9.71 6.427 10 8 10s3.022-.289 4.096-.777C13.125 8.755 14 8.007 14 7v-.839c-.457.432-1.004.751-1.49.972C11.278 7.693 9.682 8 8 8s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972'/%3E%3Cpath d='M2 9.161V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13s3.022-.289 4.096-.777C13.125 11.755 14 11.007 14 10v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972'/%3E%3Cpath d='M2 12.161V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16s3.022-.289 4.096-.777C13.125 14.755 14 14.007 14 13v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-t43x88qk3f] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' 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-item[b-t43x88qk3f] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-t43x88qk3f] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-t43x88qk3f] {
        padding-bottom: 1rem;
    }

    /* Use white for nav-link text so that it stands out on the dark background */
    .nav-item[b-t43x88qk3f]  .nav-link {
        color: #FFFFFF;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

    /* Use white for nav-link text so that it stands out on the dark background */
    .nav-item[b-t43x88qk3f]  .logout-btn {
        color: #FFFFFF;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

    /* Active state uses a transparent tint of the accent color (#14E4BD) */
    .nav-item[b-t43x88qk3f]  a.active {
        background-color: rgba(20, 228, 189, 0.37);
        color: #FFFFFF;
    }

    /* On hover, apply a light tint of the accent color */
    .nav-item[b-t43x88qk3f]  .nav-link:hover {
        background-color: rgba(20, 228, 189, 0.1);
        color: #FFFFFF;
    }

.nav-scrollable[b-t43x88qk3f] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-t43x88qk3f] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-t43x88qk3f] {
        display: none;
    }

    .nav-scrollable[b-t43x88qk3f] {
        /* Never collapse the sidebar for wide screens */
        display: block;
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* Use white for nav-link text so that it stands out on the dark background */
.nav-item[b-t43x88qk3f]  .logout-btn {
    color: #FFFFFF;
    background: none;
    border: none;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    width: 100%;
}

/* Style the logout button */
.logout-btn[b-t43x88qk3f] {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: #FFFFFF; /* or your preferred text color */
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 0; /* Add spacing if desired */
    margin-bottom: 15px;    
}

hr[b-t43x88qk3f] {
    background-size: 4px;
    border-top: 4px solid #FFF0F2;
    border-color: #FFF0F2;
}
/* _content/LuxeIQ.Web/Components/Pages/Data.razor.rz.scp.css */
/***************************************
 * Requests Page Layout
 ***************************************/

/* Container that holds the left nav and main content side by side */
.requests-page[b-s4dyp7illh] {
    width: 100%;
    min-height: 100vh; /* If you want full viewport height */
}

/* Left Nav Sidebar */
.requests-sidebar[b-s4dyp7illh] {
    min-width: 200px; /* Adjust as needed */
    background-color: #fff;
    border-right: 1px solid #d6d5d5;
    padding-top: 1rem;
}

    /* Navigation List (remove default bullets, etc.) */
    .requests-sidebar .nav[b-s4dyp7illh] {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* Nav Items */
    .requests-sidebar .nav-item[b-s4dyp7illh] {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        font-weight: 500;
        color: #212121; /* Adjust for your text color preference */
        cursor: pointer;
    }

        .requests-sidebar .nav-item:not(.active):hover[b-s4dyp7illh] {
            background-color: #f1f1f1;
        }

        /* Active item with black background and white text */
        .requests-sidebar .nav-item.active[b-s4dyp7illh] {
            background-color: #000000; /* Black highlight */
            color: #ffffff;
        }

/* Example bullet icon for "Requests" */
.bullet-icon[b-s4dyp7illh] {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 0.5rem;
    display: inline-block;
}

/* Alternatively, if you prefer a Bootstrap icon, replace .bullet-icon
   with your icon markup (e.g., <span class="bi bi-circle-fill">) */

/* Main Content Area */
.requests-content[b-s4dyp7illh] {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff; /* or your preferred page bg color */
}

    /* Heading Styles */
    .requests-content h2[b-s4dyp7illh] {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        font-size: 1.25rem;
        font-weight: 600;
        color: #212121;
    }

/* Subtext below heading */
.secondary-text[b-s4dyp7illh] {
    color: #9094AE; /* Secondary text color */
    margin-bottom: 1rem;
}

/* Example button styling (if not using Bootstrap's default styles) */
.btn[b-s4dyp7illh] {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 0.5rem; /* space between buttons */
}

.btn-primary[b-s4dyp7illh] {
    background-color: #14E4BD; /* CTA color */
    color: #ffffff;
}

    .btn-primary:hover[b-s4dyp7illh] {
        background-color: #9094AE; /* darker hover color */
    }

.btn-secondary[b-s4dyp7illh] {
    background-color: #9094AE;
    color: #ffffff;
}

    .btn-secondary:hover[b-s4dyp7illh] {
        background-color: #70748C;
    }

.requests-content h2 + p[b-s4dyp7illh] {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}
/* _content/LuxeIQ.Web/Components/Pages/Requests.razor.rz.scp.css */
/***************************************
 * Requests Page Layout
 ***************************************/

/* Container that holds the left nav and main content side by side */
.requests-page[b-cl2r8nu6c5] {
    width: 100%;
    min-height: 100vh; /* If you want full viewport height */
}

/* Left Nav Sidebar */
.requests-sidebar[b-cl2r8nu6c5] {
    min-width: 200px; /* Adjust as needed */
    background-color: #fff;
    border-right: 1px solid #d6d5d5;
    padding-top: 1rem;
}

    /* Navigation List (remove default bullets, etc.) */
    .requests-sidebar .nav[b-cl2r8nu6c5] {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* Nav Items */
    .requests-sidebar .nav-item[b-cl2r8nu6c5] {
        display: flex;
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        font-weight: 500;
        color: #212121; /* Adjust for your text color preference */
        cursor: pointer;
    }

        .requests-sidebar .nav-item:not(.active):hover[b-cl2r8nu6c5] {
            background-color: #f1f1f1;
        }

        /* Active item with black background and white text */
        .requests-sidebar .nav-item.active[b-cl2r8nu6c5] {
            background-color: #000000; /* Black highlight */
            color: #ffffff;
        }

/* Example bullet icon for "Requests" */
.bullet-icon[b-cl2r8nu6c5] {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 0.5rem;
    display: inline-block;
}

/* Alternatively, if you prefer a Bootstrap icon, replace .bullet-icon
   with your icon markup (e.g., <span class="bi bi-circle-fill">) */

/* Main Content Area */
.requests-content[b-cl2r8nu6c5] {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff; /* or your preferred page bg color */
}

    /* Heading Styles */
    .requests-content h2[b-cl2r8nu6c5] {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        font-size: 1.25rem;
        font-weight: 600;
        color: #212121;
    }

/* Subtext below heading */
.secondary-text[b-cl2r8nu6c5] {
    color: #9094AE; /* Secondary text color */
    margin-bottom: 1rem;
}

/* Example button styling (if not using Bootstrap's default styles) */
.btn[b-cl2r8nu6c5] {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 0.5rem; /* space between buttons */
}

.btn-primary[b-cl2r8nu6c5] {
    background-color: #14E4BD; /* CTA color */
    color: #ffffff;
}

.btn-primary:hover[b-cl2r8nu6c5] {
    background-color: #9094AE; /* darker hover color */
}

.btn-secondary[b-cl2r8nu6c5] {
    background-color: #9094AE;
    color: #ffffff;
}

.btn-secondary:hover[b-cl2r8nu6c5] {
    background-color: #70748C;
}

.requests-content h2 + p[b-cl2r8nu6c5] {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}
/* _content/LuxeIQ.Web/Components/Pages/Users.razor.rz.scp.css */
.btn-primary[b-odtteo7lpy] {
    background-color: #212121;
    color: #FFFFFF;
    border-color: #212121;
}

    .btn-primary:hover[b-odtteo7lpy],
    .btn-primary:focus[b-odtteo7lpy],
    .btn-primary:active[b-odtteo7lpy] {
        background-color: #1a1a1a;
        border-color: #1a1a1a;
    }

.dropdown-container[b-odtteo7lpy] {
    position: relative; /* now relative to this div, not <td> */
    display: inline-block;
}

.user-dropdown[b-odtteo7lpy] {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 1000;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    padding: 0.5rem 0;
}

    .user-dropdown.show[b-odtteo7lpy] {
        display: block;
    }

.dropdown-item[b-odtteo7lpy] {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 0.5rem 1rem;
    color: #212121;
    font-size: 0.95rem;
    cursor: pointer;
}

    .dropdown-item:hover[b-odtteo7lpy] {
        background-color: #f1f1f1;
    }
