/* _content/BlazorApp1/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-j65y7q72mt] {
    position: relative;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: #121212; /* Dark background for the entire page */
    color: #e0e0e0; /* Light text for readability */
}
.center-title[b-j65y7q72mt] {
    font-family: 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    clear: both;
    top: 0;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    padding: 1rem 0;
    height: 100px;
}
.footer[b-j65y7q72mt] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.75rem;
    padding: 1rem 0;
    color: #999999;
    font-family: 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

main[b-j65y7q72mt] {
    flex: 1;
    padding: 1rem; /* Add some padding for better content spacing */
}

.orange-header[b-j65y7q72mt] {
    font-size: 1.5rem;
    color: #ff9933; /* CoolDash orange */
    margin-bottom: 1rem;
}
/* Top Row Styles */
.top-row[b-j65y7q72mt] {
    background-color: #1e1e1e; /* Darker gray for the top bar */
    border-bottom: 1px solid #333; /* Dark border for separation */
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    padding: 0 1rem; /* Horizontal padding for spacing */
}

    .top-row[b-j65y7q72mt]  a, .top-row[b-j65y7q72mt]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
        color: #00ff66; /* Vivid green for links */
        transition: color 0.3s; /* Smooth transition for hover effect */
    }

        .top-row[b-j65y7q72mt]  a:hover, .top-row[b-j65y7q72mt]  .btn-link:hover {
            text-decoration: underline; /* Underline on hover for better accessibility */
            color: #ffcc00; /* Yellow color on hover */
        }

        .top-row[b-j65y7q72mt]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
            color: #e0e0e0; /* Light gray for the first link */
        }

/* Responsive Styles */
@media (max-width: 640.98px) {
    .top-row[b-j65y7q72mt] {
        justify-content: space-between;
    }

        .top-row[b-j65y7q72mt]  a, .top-row[b-j65y7q72mt]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-j65y7q72mt] {
        flex-direction: row;
    }

    .sidebar[b-j65y7q72mt] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
        background-color: #1a1a1a; /* Dark sidebar background */
        color: #e0e0e0; /* Light text for sidebar */
        padding: 1rem; /* Padding for better content spacing */
        display: flex; /* Enable Flexbox */
        flex-direction: column; /* Maintain vertical stacking */
        justify-content: flex-start; /* Align items to the top */
        align-items: center; /* Center content horizontally */
    }

    .top-row[b-j65y7q72mt] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-j65y7q72mt]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-j65y7q72mt], article[b-j65y7q72mt] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Blazor Error UI */
#blazor-error-ui[b-j65y7q72mt] {
    background-color: #b32121; /* Dark red background for errors */
    color: #ffffff; /* White text for error message */
    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;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-j65y7q72mt] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
        color: #ffffff; /* White color for the dismiss button */
    }
/* _content/BlazorApp1/Components/Layout/NavMenu.razor.rz.scp.css */
.visually-hidden[b-5bndfk4shp] {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    border: 0;
}

.nav-box[b-5bndfk4shp] {
    display: inline-block;
    margin: 1rem auto;
    padding: 1rem;
    background-color: #121212;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #2a2a2a;
    max-width: 250px;
    text-align: center;
    overflow: hidden;
}

.nav-scrollable[b-5bndfk4shp] {
    background-color: #121212;
}

.nav-item[b-5bndfk4shp] {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

    .nav-item:last-of-type[b-5bndfk4shp] {
        margin-bottom: 0;
    }

    .nav-item[b-5bndfk4shp]  .nav-link {
        color: #e0e0e0;
        padding: 0.5rem 0;
        text-decoration: none;
        transition: background-color 0.3s, color 0.3s;
    }

    .nav-item[b-5bndfk4shp]  a.active {
        background-color: #1a1a1a;
        color: #00ff66;
    }

    .nav-item[b-5bndfk4shp]  .nav-link:hover {
        background-color: #1a1a1a;
        color: #00ff66;
    }

    .nav-item span.bi[b-5bndfk4shp] {
        margin-right: 0.5rem;
        vertical-align: middle;
    }
