/* Global Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f9ff;
    color: #0b1c30;
    min-height: 100vh;
}

/* Blazor Specific Fixes */
h1:focus, h2:focus {
    outline: none;
}

/* Login Page Styles */
.login-body {
    background: linear-gradient(135deg, #f8f9ff 0%, #eff4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.login-card {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.06);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 440px;
    padding: 40px;
    text-align: center;
}

.logo-container {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #eff6ff;
    border-radius: 16px;
    color: #2563eb;
}

.login-card h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0b1c30;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

p.subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 32px;
}

.sso-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.sso-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 48px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-google {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #3f465c;
}

.btn-google:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.btn-microsoft {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #3f465c;
}

.btn-microsoft:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.sso-icon {
    width: 18px;
    height: 18px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    font-size: 12px;
    margin-bottom: 24px;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.divider:not(:empty)::before {
    margin-right: .5em;
}

.divider:not(:empty)::after {
    margin-left: .5em;
}

.privacy-notice {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    background-color: #f8fafc;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    text-align: left;
}

.privacy-notice strong {
    color: #0b1c30;
}

.error-banner {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
}

/* Dashboard Header Styles */
.app-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-topbar {
    background-color: #f8fafc;
    border-bottom: 1px solid #d8dee8;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    min-height: 58px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    gap: 24px;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0b55d9;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.admin-brand-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background-color: #0b55d9;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.admin-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    height: 100%;
}

.admin-nav-link {
    height: 58px;
    display: inline-flex;
    align-items: center;
    color: #182033;
    border-bottom: 2px solid transparent;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    color: #0b55d9;
    border-bottom-color: #0b55d9;
}

.admin-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.admin-icon-btn {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    color: #16213a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.admin-icon-btn:hover {
    color: #0b55d9;
}

.admin-avatar-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.admin-avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0f766e, #0f172a);
    color: #ffffff;
    font-weight: 700;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #dbeafe;
}

@media (max-width: 900px) {
    .admin-topbar {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 0 20px;
    }

    .admin-brand {
        font-size: 18px;
    }

    .admin-nav {
        grid-column: 1 / -1;
        order: 3;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 18px;
    }

    .admin-nav-link {
        height: 42px;
    }
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
}

.header-date {
    font-size: 16px;
    font-weight: 600;
    color: #0b1c30;
    background-color: #e5eeff;
    padding: 6px 16px;
    border-radius: 20px;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 38px;
    height: 38px;
    background-color: #7c3aed;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.username {
    font-size: 14px;
    font-weight: 600;
    color: #3f465c;
}

.logout-btn {
    font-size: 13px;
    font-weight: 600;
    color: #ef4444;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background-color 0.2s;
    text-decoration: none;
}

.logout-btn:hover {
    background-color: #fee2e2;
}

/* Layout Grid */
.dashboard-container {
    max-width: 1280px;
    margin: 40px auto 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
}

h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0b1c30;
}

/* Shifts List */
.shifts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shift-card {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.02);
    transition: all 0.2s ease;
}

.shift-card:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.06);
    border-color: #cbd5e1;
}

.shift-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shift-date-time {
    font-size: 16px;
    font-weight: 700;
    color: #0b1c30;
}

.shift-vacancies {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 4px;
}

.progress-bar {
    height: 100%;
    background-color: #2563eb;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.gender-breakdown {
    display: flex;
    gap: 24px;
    font-size: 12px;
    font-weight: 500;
    color: #475569;
    margin-top: 4px;
}

.gender-badge {
    background-color: #f1f5f9;
    padding: 4px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gender-badge.masc {
    color: #0284c7;
    background-color: #e0f2fe;
}

.gender-badge.fem {
    color: #db2777;
    background-color: #fce7f3;
}

/* Checkbox styling */
.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-checkbox {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    padding: 10px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    user-select: none;
    transition: all 0.2s;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

.custom-checkbox input:checked ~ span {
    color: #ffffff;
}

.custom-checkbox:has(input:checked) {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

/* Disabled / Full shift styling */
.shift-card.disabled {
    opacity: 0.65;
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

.badge-full {
    background-color: #ef4444;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sidebar / Selection summary */
.sidebar {
    position: sticky;
    top: 110px;
    height: fit-content;
}

.summary-card {
    background-color: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.04);
}

.summary-title {
    font-size: 18px;
    font-weight: 700;
    color: #0b1c30;
    margin-bottom: 16px;
}

.summary-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.summary-btn {
    width: 100%;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    margin-bottom: 20px;
}

.summary-btn:hover {
    background-color: #1d4ed8;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.limit-label {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    text-align: center;
    background-color: #f1f5f9;
    padding: 8px 16px;
    border-radius: 10px;
}

.limit-value {
    color: #2563eb;
    font-weight: 700;
}

/* Info/Warning Banner */
.info-banner {
    display: flex;
    gap: 12px;
    background-color: #f0f7ff;
    border: 1px solid #e0f2fe;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 28px;
    text-align: left;
}

.info-banner svg {
    color: #0284c7;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-text {
    font-size: 13px;
    color: #0369a1;
    line-height: 1.6;
    font-weight: 500;
}

/* Form styling */
.form-group {
    margin-bottom: 20px;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #3f465c;
    margin-bottom: 8px;
}

label .required-indicator {
    color: #ef4444;
    margin-left: 2px;
}

.input-control {
    width: 100%;
    height: 46px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    font-family: inherit;
    font-size: 14px;
    color: #0b1c30;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.input-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-control::placeholder {
    color: #94a3b8;
}

.input-control[readonly], .input-control:disabled {
    background-color: #f8fafc;
    color: #64748b;
    border-color: #e2e8f0;
    cursor: not-allowed;
}

.validation-message {
    display: block;
    margin-top: 6px;
    color: #b91c1c;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
}

.validation-errors {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    list-style-position: inside;
}

.sso-provider-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.sso-provider-badge svg {
    width: 16px;
    height: 16px;
}

/* Gender selector toggles */
.gender-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gender-option {
    position: relative;
}

.gender-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.gender-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.gender-option input[type="radio"]:checked + .gender-label {
    border-color: #2563eb;
    color: #2563eb;
    background-color: #eff6ff;
    font-weight: 600;
    box-shadow: 0 0 0 1px #2563eb;
}

.gender-label:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 32px;
}

.submit-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn:active {
    transform: translateY(0);
}

/* Primeiro Acesso Container & Header (from sketch) */
.container {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.06);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 500px;
    padding: 40px;
}

.header {
    margin-bottom: 24px;
    text-align: center;
}

.header h1 {
    font-size: 26px;
    font-weight: 700;
    color: #0b1c30;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.header p.subtitle {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

.form-actions-centered {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.form-actions-centered .submit-btn {
    max-width: 240px;
}

/* ==========================================================================
   Dashboard / Home Page Scoped Styles (Moved from Home.razor.css)
   ========================================================================== */

.welcome-section {
    margin-bottom: 32px;
}

.welcome-title {
    font-size: 28px;
    font-weight: 700;
    color: #0b1c30;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.welcome-subtitle {
    font-size: 15px;
    color: #64748b;
}

/* Bento Summary Row */
.bento-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .bento-row {
        grid-template-columns: 1fr;
    }
}

.bento-card {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.06);
}

.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.bento-title {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.bento-value {
    font-size: 24px;
    font-weight: 700;
    color: #0b1c30;
}

.bento-value-highlight {
    color: #2563eb;
}

.bento-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background-color: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-icon-wrapper.purple {
    background-color: #f5f3ff;
    color: #7c3aed;
}

.bento-footer {
    font-size: 13px;
    color: #64748b;
}

/* Custom progress bar */
.progress-container {
    width: 100%;
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin: 8px 0;
}

.progress-fill {
    height: 100%;
    background-color: #2563eb;
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* Schedule Card tweaks for dashboard */
.dashboard-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
}

.dashboard-list-title {
    font-size: 18px;
    font-weight: 700;
    color: #0b1c30;
}

.dashboard-list-action {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

.dashboard-list-action:hover {
    color: #1d4ed8;
}

/* Trash button layout */
.action-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-trash {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #fee2e2;
    background-color: #fff5f5;
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-trash:hover {
    background-color: #fee2e2;
    transform: scale(1.05);
}

.btn-trash.disabled {
    border: 1px solid #e2e8f0;
    background-color: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

/* Tooltip style */
.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #0f172a;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Sidebar styling for dashboard */
.quick-actions-card {
    background-color: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.04);
}

.quick-action-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.quick-action-link:hover {
    background-color: #eff6ff;
    color: #2563eb;
}

.quick-action-link svg {
    transition: transform 0.2s;
}

.quick-action-link:hover svg {
    transform: translateX(2px);
}

/* Modal Confirmation */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease-out;
}

.modal-dialog {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 450px;
    padding: 32px;
    animation: slideUp 0.2s ease-out;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #0b1c30;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-body {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn-cancel {
    background-color: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-cancel:hover {
    background-color: #e2e8f0;
}

.btn-confirm-delete {
    background-color: #ef4444;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.btn-confirm-delete:hover {
    background-color: #dc2626;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Admin Stripe */
.admin-stripe {
    background-color: #0f172a; /* Slate escuro premium */
    color: #ffffff;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #1e293b;
    user-select: none;
    z-index: 101; /* Fica acima do header se necessário */
}

/* Alerta de Aviso na Sidebar de Escalas */
.warning-box {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 16px;
    color: #1e3a8a;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
}

.warning-box svg {
    color: #2563eb;
    flex-shrink: 0;
}

/* Badges de Status do Turno */
.badge-quota {
    background-color: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-registered {
    background-color: #d1fae5;
    color: #065f46;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-lock {
    background-color: #fffbeb;
    color: #b45309;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Progresso de limite de inscrições */
.limit-progress-bar {
    width: 100%;
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 8px;
}

.limit-progress {
    height: 100%;
    background-color: #7c3aed; /* Roxo para o limite pessoal */
    border-radius: 3px;
    transition: width 0.3s ease;
}
