/* /Pages/TestCenterLabs/TestCenterLabData.razor.rz.scp.css */
[b-80gkq9wv47] .btn {
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

[b-80gkq9wv47] .btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

[b-80gkq9wv47] .btn:active:not(:disabled) {
    transform: translateY(0);
}

[b-80gkq9wv47] .btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
}

[b-80gkq9wv47] .btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
}

[b-80gkq9wv47] .btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

[b-80gkq9wv47] .btn-danger:hover:not(:disabled) {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

[b-80gkq9wv47] .btn-outline-dark {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
    border: none;
}

[b-80gkq9wv47] .btn-outline-dark:hover:not(:disabled) {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(71, 85, 105, 0.3);
}

[b-80gkq9wv47] .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

[b-80gkq9wv47] .btn i {
    font-size: 1.1rem;
}

/* Page Header & Layout */
[b-80gkq9wv47] h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 1.5rem 0 0.5rem 0;
    letter-spacing: -0.5px;
}

[b-80gkq9wv47] h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 1rem 0 0.5rem 0;
}

[b-80gkq9wv47] hr {
    margin: 1rem 0 2rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd 0%, rgba(13, 110, 253, 0) 100%);
    opacity: 0.6;
}

/* Breadcrumb Navigation */
[b-80gkq9wv47] .breadcrumb {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}

[b-80gkq9wv47] .breadcrumb-item {
    font-size: 0.9rem;
}

[b-80gkq9wv47] .breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s ease;
}

[b-80gkq9wv47] .breadcrumb-item a:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

[b-80gkq9wv47] .breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

/* Form Controls */
[b-80gkq9wv47] .form-control {
    border-radius: 6px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.6rem 0.75rem;
}

[b-80gkq9wv47] .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    outline: none;
}

[b-80gkq9wv47] .form-control::placeholder {
    color: #adb5bd;
}

/* Input Group */
[b-80gkq9wv47] .input-group {
    gap: 0.5rem;
}

[b-80gkq9wv47] .input-group-append {
    display: flex;
    gap: 0.5rem;
}

/* Table Styling */
[b-80gkq9wv47] .table {
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

[b-80gkq9wv47] .table thead {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

[b-80gkq9wv47] .table-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%) !important;
}

[b-80gkq9wv47] .table thead th {
    border: none;
    padding: 1rem 0.75rem;
    vertical-align: middle;
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
}

[b-80gkq9wv47] .table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #e9ecef;
}

[b-80gkq9wv47] .table tbody tr:hover {
    background-color: #f8f9ff;
    box-shadow: inset 0 1px 3px rgba(13, 110, 253, 0.08);
}

[b-80gkq9wv47] .table tbody td {
    padding: 0.85rem 0.75rem;
    vertical-align: middle;
    border: none;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #495057;
}

[b-80gkq9wv47] .table tbody tr:last-child td {
    border-bottom: none;
}

[b-80gkq9wv47] .table-bordered {
    border: 1px solid #e9ecef;
}

[b-80gkq9wv47] .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.015);
}

/* Pagination Styling */
[b-80gkq9wv47] .pagination {
    margin-top: 2rem;
    justify-content: center;
    gap: 0.5rem;
}

[b-80gkq9wv47] .pagination .page-item {
    margin: 0;
}

[b-80gkq9wv47] .pagination .btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

[b-80gkq9wv47] .pagination .d-flex {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
}

/* Container Padding */
[b-80gkq9wv47] main {
    padding: 1.5rem;
}
/* /Pages/TestCenters/TestCenterData.razor.rz.scp.css */
[b-9gmj029yll] .btn {
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

[b-9gmj029yll] .btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(100, 78, 156, 0.15);
}

[b-9gmj029yll] .btn:active:not(:disabled) {
    transform: translateY(0);
}

[b-9gmj029yll] .btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
}

[b-9gmj029yll] .btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
}

[b-9gmj029yll] .btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

[b-9gmj029yll] .btn-danger:hover:not(:disabled) {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

[b-9gmj029yll] .btn-outline-dark {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
    border: none;
}

[b-9gmj029yll] .btn-outline-dark:hover:not(:disabled) {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(71, 85, 105, 0.3);
}

[b-9gmj029yll] .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

[b-9gmj029yll] .btn i {
    font-size: 1.1rem;
}

/* Page Header & Layout */
[b-9gmj029yll] h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 1.5rem 0 0.5rem 0;
    letter-spacing: -0.5px;
}

[b-9gmj029yll] hr {
    margin: 1rem 0 2rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd 0%, rgba(13, 110, 253, 0) 100%);
    opacity: 0.6;
}

/* Breadcrumb Navigation */
[b-9gmj029yll] .breadcrumb {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}

[b-9gmj029yll] .breadcrumb-item {
    font-size: 0.9rem;
}

[b-9gmj029yll] .breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s ease;
}

[b-9gmj029yll] .breadcrumb-item a:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

[b-9gmj029yll] .breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

/* Form Controls */
[b-9gmj029yll] .form-control {
    border-radius: 6px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.6rem 0.75rem;
}

[b-9gmj029yll] .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    outline: none;
}

[b-9gmj029yll] .form-control::placeholder {
    color: #adb5bd;
}

/* Input Group */
[b-9gmj029yll] .input-group {
    gap: 0.5rem;
}

[b-9gmj029yll] .input-group-append {
    display: flex;
    gap: 0.5rem;
}

/* Table Styling */
[b-9gmj029yll] .table {
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

[b-9gmj029yll] .table thead {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

[b-9gmj029yll] .table-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%) !important;
}

[b-9gmj029yll] .table thead th {
    border: none;
    padding: 1rem 0.75rem;
    vertical-align: middle;
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
}

[b-9gmj029yll] .table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #e9ecef;
}

[b-9gmj029yll] .table tbody tr:hover {
    background-color: #f8f9ff;
    box-shadow: inset 0 1px 3px rgba(13, 110, 253, 0.08);
}

[b-9gmj029yll] .table tbody td {
    padding: 0.85rem 0.75rem;
    vertical-align: middle;
    border: none;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #495057;
}

[b-9gmj029yll] .table tbody tr:last-child td {
    border-bottom: none;
}

[b-9gmj029yll] .table-bordered {
    border: 1px solid #e9ecef;
}

[b-9gmj029yll] .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.015);
}

/* Pagination Styling */
[b-9gmj029yll] .pagination {
    margin-top: 2rem;
    justify-content: center;
    gap: 0.5rem;
}

[b-9gmj029yll] .pagination .page-item {
    margin: 0;
}

[b-9gmj029yll] .pagination .btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

[b-9gmj029yll] .pagination .d-flex {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
}

/* Container Padding */
[b-9gmj029yll] main {
    padding: 1.5rem;
}
/* /Pages/TestCenterWS/TestCenterWSData.razor.rz.scp.css */
[b-y1ibb651o8] .btn {
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

[b-y1ibb651o8] .btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

[b-y1ibb651o8] .btn:active:not(:disabled) {
    transform: translateY(0);
}

[b-y1ibb651o8] .btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
}

[b-y1ibb651o8] .btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
}

[b-y1ibb651o8] .btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

[b-y1ibb651o8] .btn-danger:hover:not(:disabled) {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

[b-y1ibb651o8] .btn-outline-dark {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
    border: none;
}

[b-y1ibb651o8] .btn-outline-dark:hover:not(:disabled) {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(71, 85, 105, 0.3);
}

[b-y1ibb651o8] .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

[b-y1ibb651o8] .btn i {
    font-size: 1.1rem;
}

/* Page Header & Layout */
[b-y1ibb651o8] h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 1.5rem 0 0.5rem 0;
    letter-spacing: -0.5px;
}

[b-y1ibb651o8] hr {
    margin: 1rem 0 2rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd 0%, rgba(13, 110, 253, 0) 100%);
    opacity: 0.6;
}

/* Breadcrumb Navigation */
[b-y1ibb651o8] .breadcrumb {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}

[b-y1ibb651o8] .breadcrumb-item {
    font-size: 0.9rem;
}

[b-y1ibb651o8] .breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s ease;
}

[b-y1ibb651o8] .breadcrumb-item a:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

[b-y1ibb651o8] .breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

/* Form Controls */
[b-y1ibb651o8] .form-control {
    border-radius: 6px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.6rem 0.75rem;
}

[b-y1ibb651o8] .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    outline: none;
}

[b-y1ibb651o8] .form-control::placeholder {
    color: #adb5bd;
}

/* Input Group */
[b-y1ibb651o8] .input-group {
    gap: 0.5rem;
}

[b-y1ibb651o8] .input-group-append {
    display: flex;
    gap: 0.5rem;
}

/* Table Styling */
[b-y1ibb651o8] .table {
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

[b-y1ibb651o8] .table thead {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

[b-y1ibb651o8] .table-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%) !important;
}

[b-y1ibb651o8] .table thead th {
    border: none;
    padding: 1rem 0.75rem;
    vertical-align: middle;
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
}

[b-y1ibb651o8] .table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #e9ecef;
}

[b-y1ibb651o8] .table tbody tr:hover {
    background-color: #f8f9ff;
    box-shadow: inset 0 1px 3px rgba(13, 110, 253, 0.08);
}

[b-y1ibb651o8] .table tbody td {
    padding: 0.85rem 0.75rem;
    vertical-align: middle;
    border: none;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #495057;
}

[b-y1ibb651o8] .table tbody tr:last-child td {
    border-bottom: none;
}

[b-y1ibb651o8] .table-bordered {
    border: 1px solid #e9ecef;
}

[b-y1ibb651o8] .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.015);
}

/* Pagination Styling */
[b-y1ibb651o8] .pagination {
    margin-top: 2rem;
    justify-content: center;
    gap: 0.5rem;
}

[b-y1ibb651o8] .pagination .page-item {
    margin: 0;
}

[b-y1ibb651o8] .pagination .btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

[b-y1ibb651o8] .pagination .d-flex {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
}

/* Container Padding */
[b-y1ibb651o8] main {
    padding: 1.5rem;
}
/* /Pages/TestLogs/TestLogData.razor.rz.scp.css */
[b-mi96rcshz0] .btn {
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

[b-mi96rcshz0] .btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

[b-mi96rcshz0] .btn:active:not(:disabled) {
    transform: translateY(0);
}

[b-mi96rcshz0] .btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
}

[b-mi96rcshz0] .btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
}

[b-mi96rcshz0] .btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #ffffff;
}

[b-mi96rcshz0] .btn-warning:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

[b-mi96rcshz0] .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

[b-mi96rcshz0] .btn i {
    font-size: 1.1rem;
}

[b-mi96rcshz0] .d-flex.gap-3 {
    gap: 1rem !important;
}

[b-mi96rcshz0] .d-flex.flex-wrap {
    flex-wrap: wrap;
    row-gap: 0.75rem;
}

/* Table Styling */
[b-mi96rcshz0] .table {
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

[b-mi96rcshz0] .table thead {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

[b-mi96rcshz0] .table-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%) !important;
}

[b-mi96rcshz0] .table thead th {
    border: none;
    padding: 1rem 0.75rem;
    vertical-align: middle;
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
}

[b-mi96rcshz0] .table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #e9ecef;
}

[b-mi96rcshz0] .table tbody tr:hover {
    background-color: #f8f9ff;
    box-shadow: inset 0 1px 3px rgba(13, 110, 253, 0.08);
}

[b-mi96rcshz0] .table tbody tr.table-active {
    background-color: #e7f1ff;
    font-weight: 500;
}

[b-mi96rcshz0] .table tbody tr.table-active:hover {
    background-color: #cfe2ff;
}

[b-mi96rcshz0] .table tbody td {
    padding: 0.85rem 0.75rem;
    vertical-align: middle;
    border: none;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #495057;
}

[b-mi96rcshz0] .table tbody tr:last-child td {
    border-bottom: none;
}

[b-mi96rcshz0] .table-bordered {
    border: 1px solid #e9ecef;
}

[b-mi96rcshz0] .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.015);
}

/* Badge Styling */
[b-mi96rcshz0] .badge {
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Checkbox Styling */
[b-mi96rcshz0] .table input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0d6efd;
    border-radius: 4px;
}

[b-mi96rcshz0] .table input[type="checkbox"]:hover {
    transform: scale(1.1);
}

/* Page Header & Layout */
[b-mi96rcshz0] h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 1.5rem 0 0.5rem 0;
    letter-spacing: -0.5px;
}

[b-mi96rcshz0] hr {
    margin: 1rem 0 2rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd 0%, rgba(13, 110, 253, 0) 100%);
    opacity: 0.6;
}

/* Breadcrumb Navigation */
[b-mi96rcshz0] .breadcrumb {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}

[b-mi96rcshz0] .breadcrumb-item {
    font-size: 0.9rem;
}

[b-mi96rcshz0] .breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s ease;
}

[b-mi96rcshz0] .breadcrumb-item a:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

[b-mi96rcshz0] .breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

/* Form Controls */
[b-mi96rcshz0] .form-control,
[b-mi96rcshz0] .form-select {
    border-radius: 6px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.6rem 0.75rem;
}

[b-mi96rcshz0] .form-control:focus,
[b-mi96rcshz0] .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    outline: none;
}

[b-mi96rcshz0] .form-control::placeholder {
    color: #adb5bd;
}

[b-mi96rcshz0] .col-form-label {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.95rem;
}

[b-mi96rcshz0] .row.mb-3 {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #0d6efd;
    margin-bottom: 1.25rem;
}

/* Modal Styling */
[b-mi96rcshz0] .modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

[b-mi96rcshz0] .modal-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    border-radius: 10px 10px 0 0;
    border: none;
    padding: 1.25rem 1.5rem;
}

[b-mi96rcshz0] .modal-title {
    font-weight: 600;
    font-size: 1.1rem;
}

[b-mi96rcshz0] .modal-body {
    padding: 1.75rem;
    color: #495057;
    font-size: 0.95rem;
}

[b-mi96rcshz0] .modal-footer {
    background-color: #f8f9fa;
    border-radius: 0 0 10px 10px;
    border: none;
    padding: 1.25rem 1.5rem;
}

[b-mi96rcshz0] .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

/* List Group Items */
[b-mi96rcshz0] .list-group-item {
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

[b-mi96rcshz0] .list-group-item:hover:not(.active) {
    background-color: #f8f9ff;
    border-color: #0d6efd;
}

[b-mi96rcshz0] .list-group-item.active {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border-color: #0d6efd;
    color: white;
}

[b-mi96rcshz0] .list-group-item.active strong {
    color: white;
}

/* Button Colors in Modal */
[b-mi96rcshz0] .btn-success {
    background: linear-gradient(135deg, #198754 0%, #157347 100%);
    border: none;
}

[b-mi96rcshz0] .btn-success:hover:not(:disabled) {
    background: linear-gradient(135deg, #157347 0%, #146c43 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(25, 135, 84, 0.3);
}

[b-mi96rcshz0] .btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5c636a 100%);
    border: none;
    color: white;
}

[b-mi96rcshz0] .btn-secondary:hover:not(:disabled) {
    background: linear-gradient(135deg, #5c636a 0%, #545b62 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(108, 117, 125, 0.3);
}

/* Container Padding */
[b-mi96rcshz0] main {
    padding: 1.5rem;
}

/* Page spacing improvements */
[b-mi96rcshz0] br {
    display: none;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-9s5ikxwl3z] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-9s5ikxwl3z] {
    flex: 1;
}

.sidebar[b-9s5ikxwl3z] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #001d4b 70%);
}

.top-row[b-9s5ikxwl3z] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-9s5ikxwl3z]  a,
.top-row[b-9s5ikxwl3z]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-9s5ikxwl3z]  a:hover,
.top-row[b-9s5ikxwl3z]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-9s5ikxwl3z]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-9s5ikxwl3z] {
        display: none;
    }

    .top-row.auth[b-9s5ikxwl3z] {
        justify-content: space-between;
    }

    .top-row[b-9s5ikxwl3z]  a,
    .top-row[b-9s5ikxwl3z]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-9s5ikxwl3z] {
        flex-direction: row;
    }

    .sidebar[b-9s5ikxwl3z] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-9s5ikxwl3z] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-9s5ikxwl3z]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-9s5ikxwl3z],
    article[b-9s5ikxwl3z] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-rv50uag7ox] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-rv50uag7ox] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-rv50uag7ox] {
    font-size: 1.1rem;
}

.oi[b-rv50uag7ox] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-rv50uag7ox] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-rv50uag7ox] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-rv50uag7ox] {
        padding-bottom: 1rem;
    }

    .nav-item[b-rv50uag7ox]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-rv50uag7ox]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-rv50uag7ox]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-rv50uag7ox] {
        display: none;
    }

    .collapse[b-rv50uag7ox] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
