/* ==========================================================================
   TMS AutoKlinika - Master Stylesheet
   Design: Clean white, Montserrat, gradient borders, red & dark-blue accents
   ========================================================================== */

/* 1. Definicje Czcionek Montserrat (Ładowane lokalnie) */
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Regular.woff2') format('woff2'),
         url('/assets/fonts/Montserrat-Regular.woff') format('woff'),
         url('/assets/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Medium.woff2') format('woff2'),
         url('/assets/fonts/Montserrat-Medium.woff') format('woff'),
         url('/assets/fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Bold.woff2') format('woff2'),
         url('/assets/fonts/Montserrat-Bold.woff') format('woff'),
         url('/assets/fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* 2. Zmienne CSS i Reset */
:root {
    --primary-red: #E31837;
    --primary-blue: #0A1931;
    --text-black: #1A1A1A;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --border-gray: #E0E0E0;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 14px;
    --gradient-border: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* 3. Typografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-blue);
}

/* 4. Struktura Nagłówka i Layout */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-light);
}

.header-logo {
    height: 45px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-welcome {
    font-size: 0.9rem;
}

/* Hamburger button */
.hamburger-btn {
    background: none;
    border: none;
    color: #000000;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.hamburger-btn i {
    font-size: 1.3rem;
}

.hamburger-btn:hover {
    color: var(--primary-red);
}

/* 5. Kontenery i Karty */
.dashboard-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    min-height: 70vh;
}

.page-header-title {
    margin-bottom: 30px;
}

.page-header-title p {
    color: #666;
}

.card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-light);
    border: 1px solid transparent;
    background-image: linear-gradient(var(--bg-white), var(--bg-white)), var(--gradient-border);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

/* 6. Formularze i Elementy Wejścia */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--primary-blue);
}

.form-control, input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="date"], input[type="url"], input[type="datetime-local"], select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-black);
    background-color: var(--bg-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus, input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.1);
}

.input-readonly {
    background-color: var(--bg-light);
    color: #666;
    cursor: not-allowed;
}

/* Custom Checkboxes */
.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px; /* Odsuwa tekst od checkboxa */
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    user-select: none;
    margin-bottom: 8px;
    line-height: 20px;
}

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

.checkmark {
    position: absolute;
    top: 0px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #e0e0e0; /* szary dla odznaczonego */
    border: 1px solid #b0b0b0; /* szara ramka */
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #d0d0d0;
    border-color: #999;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #4BB543; /* zielony dla zaznaczonego */
    border-color: #4BB543;
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-container .checkmark::after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


/* 7. Przyciski */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-red {
    background-color: var(--primary-red);
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-red:hover {
    background-color: var(--primary-blue);
    transform: translateY(-1px);
}

.btn-neutral {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    border: 1px solid var(--border-gray);
}

.btn-neutral:hover {
    background-color: var(--border-gray);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
}

.badge-administrator { background-color: #ffe6e6; color: var(--primary-red); }
.badge-dyspozytor { background-color: #e6f0ff; color: var(--primary-blue); }
.badge-prezes { background-color: #f3e6ff; color: #7b2cbf; }
.badge-kierowca { background-color: #e6ffe6; color: #1b4332; }
.badge-neutral { background-color: var(--border-gray); color: var(--text-black); }

/* 8. Menu boczne wysuwane (Hamburger Drawer) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--bg-white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-menu.open {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--border-gray);
}

.menu-user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--primary-red);
}

.menu-avatar-letter {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.menu-user-info {
    display: flex;
    flex-direction: column;
}

.menu-username {
    font-weight: 700;
    font-size: 0.95rem;
}

.menu-role {
    font-size: 0.75rem;
    color: #666;
}

.menu-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.menu-list {
    list-style: none;
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    border-radius: 8px;
    color: var(--text-black);
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.menu-item i {
    font-size: 1.1rem;
    color: var(--primary-blue);
    width: 20px;
}

.menu-item:hover, .menu-item.active {
    background-color: var(--bg-light);
    color: var(--primary-red);
}

.menu-separator {
    height: 1.5px;
    background-color: var(--border-gray);
    margin: 15px 0;
}

.logout-link {
    color: var(--primary-red);
}

.logout-link i {
    color: var(--primary-red);
}

/* 9. Stopka Operatora i Stopka Główna */
.operator-section {
    text-align: center;
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 40px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-light);
    border: 1px solid transparent;
    background-image: linear-gradient(var(--bg-white), var(--bg-white)), var(--gradient-border);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.operator-title {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.operator-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-operator {
    min-width: 250px;
}

@media (max-width: 768px) {
    .operator-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn-operator {
        width: 100%;
        max-width: 350px;
    }
}

.main-footer {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--primary-blue);
    color: var(--bg-white);
    margin-top: 50px;
}

.footer-link {
    color: var(--primary-red);
    font-weight: 600;
}

.footer-link:hover {
    color: var(--bg-white);
}

/* 10. Stylizacja Logowania */
.login-body {
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-wrapper {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
}

.login-logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    max-height: 60px;
    object-fit: contain;
}

.login-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--shadow-hover);
    border: 1px solid transparent;
    background-image: linear-gradient(var(--bg-white), var(--bg-white)), var(--gradient-border);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.login-card h2 {
    text-align: center;
    margin-bottom: 25px;
}

.step-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.captcha-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.login-links {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
    color: #888;
}

.login-footer a {
    color: #666;
}

/* Błędy i Sukcesy */
.error-box, .flash-error {
    background-color: #fff5f5;
    border-left: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.success-box, .flash-success {
    background-color: #f5fff5;
    border-left: 1px solid #4BB543;
    color: #2b702e;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 11. Profile Uploader */
.profile-photo-uploader {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.profile-avatar-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--primary-red);
    background-color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-preview-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-preview-letter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-white);
}

.uploader-inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.uploader-help {
    font-size: 0.75rem;
    color: #666;
}

/* 12. Tabs w Panelu */
.tabs-container {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.tab-link {
    background-color: var(--bg-white);
    color: var(--primary-blue);
    border: 1px solid var(--border-gray);
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 400;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.tab-link:hover, .tab-link.active {
    background-color: var(--primary-red);
    color: var(--bg-white);
    border-color: var(--primary-red);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 13. Tabele */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 0.9rem;
}

.table th, .table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
}

.table th {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    font-weight: 700;
}

.table tbody tr:hover {
    background-color: var(--bg-light);
}

/* Modale */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 50px 10px;
}

.modal-content {
    background-color: var(--bg-white);
    margin: auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: var(--primary-red);
}

/* 14. Dziennik pracy kierowcy timeline */
.route-timeline {
    position: relative;
    padding-left: 30px;
    margin: 20px 0;
}

.route-timeline::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background-color: var(--border-gray);
}

.timeline-point-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 3px;
    width: 20px;
    height: 20px;
    background: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.timeline-content {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid var(--border-gray);
}

.timeline-point-item.active .timeline-content {
    border-left: 1px solid var(--primary-red);
    box-shadow: var(--shadow-light);
}

.timeline-point-item.completed .timeline-content {
    opacity: 0.7;
    background-color: var(--bg-light);
}

.timeline-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.planned-time {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-blue);
}

.time-late {
    color: var(--primary-red);
}

.point-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-odbior_magazyn { background-color: #e3f2fd; color: #1565c0; }
.badge-dostawa_klient { background-color: #e8f5e9; color: #2e7d32; }
.badge-odbior_przeprowadzka { background-color: #fff3e0; color: #e65100; }
.badge-dostawa_przeprowadzka { background-color: #efebe9; color: #4e342e; }

.address-details {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.navigation-link-block {
    margin-bottom: 10px;
}

/* 15. Checklista row */
.checklist-row {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-gray);
}

.checklist-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.checklist-options {
    display: flex;
    gap: 15px;
}

.check-btn {
    cursor: pointer;
    flex-grow: 1;
}

.check-btn input {
    display: none;
}

.btn-check {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    background-color: var(--bg-white);
}

.check-btn.green input:checked + .btn-check {
    border-color: #4BB543;
    background-color: #f5fff5;
    color: #2b702e;
}

.check-btn.red input:checked + .btn-check {
    border-color: var(--primary-red);
    background-color: #fff5f5;
    color: var(--primary-red);
}

.checklist-desc-group {
    margin-top: 10px;
}

/* 16. Multiupload Uploader i Miniatury */
.upload-dropzone {
    border: 2.5px dashed var(--border-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    background-color: var(--bg-light);
    transition: border-color 0.2s ease;
}

.upload-dropzone:hover {
    border-color: var(--primary-red);
}

.upload-dropzone p {
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
}

.upload-progress-container {
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--border-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary-red);
    transition: width 0.1s ease;
}

.progress-text {
    font-size: 0.75rem;
    color: #666;
    margin-top: 4px;
    display: inline-block;
}

/* Miniatury */
.uploaded-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.thumb-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--border-gray);
}

.thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.btn-delete-thumb {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: rgba(227, 24, 55, 0.9);
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 17. Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 80%;
}

.lightbox-content {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 3001;
}

.lightbox-nav-left, .lightbox-nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    cursor: pointer;
    padding: 15px;
    user-select: none;
    transition: color 0.2s ease;
}

.lightbox-nav-left { left: -80px; }
.lightbox-nav-right { right: -80px; }

@media (max-width: 768px) {
    .lightbox-nav-left { left: 10px; }
    .lightbox-nav-right { right: 10px; }
}

.lightbox-nav-left:hover, .lightbox-nav-right:hover {
    color: var(--primary-red);
}

/* 18. Statystyki Wyniki summary */
.stats-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-title {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* Status Indicators */
.status-indicator {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
}
.status-pending { background-color: #fff3e0; color: #e65100; }
.status-approved { background-color: #e8f5e9; color: #2e7d32; }
.status-rejected { background-color: #ffe6e6; color: var(--primary-red); }
.status-resolved { background-color: #e6f0ff; color: var(--primary-blue); }
.status-active { background-color: #e6ffe6; color: #1b4332; }
.status-inactive { background-color: #eee; color: #666; }

/* Inne Utilities */
.text-center { text-align: center; }
.text-success { color: #4BB543; }
.text-red { color: var(--primary-red); }
.text-neutral { color: #888; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.gap-20 { gap: 20px; }
.p-10 { padding: 10px !important; }
.border-red { border-color: var(--primary-red) !important; }
