﻿/* RCK stilizācija - pamatstili jaunajai informācijas sistēmai */

:root {
    /* Krāsu definīcijas */
    --rck-primary: #002060; /* Primārā zila krāsa */
    --rck-secondary: #e17000; /* Sekundārā oranža krāsa */
    --rck-dark: #001437; /* Tumši zila krāsa */
    --rck-light: #f5f8fc; /* Gaiši zila krāsa */
    --rck-gray: #f0f0f0; /* Pelēka krāsa */
    --rck-text: #333333; /* Teksta krāsa */
    --rck-text-light: #6c757d; /* Gaiša teksta krāsa */
    --rck-white: #ffffff; /* Balta krāsa */
    --rck-border: #dee2e6; /* Rāmju krāsa */
    /* Fonti */
    --rck-font-main: 'Roboto', 'Open Sans', sans-serif;
    --rck-font-headers: 'Montserrat', 'Roboto', sans-serif;
}

/* Base stilizācija */
body {
    font-family: var(--rck-font-main);
    color: var(--rck-text);
    background-color: #f8f9fa;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--rck-font-headers);
    font-weight: 600;
    color: var(--rck-primary);
    margin-bottom: 1rem;
}
.card-header > h1, .card-header > h2, .card-header > h3, .card-header > h4, .card-header > h5, .card-header > h6 {
    color: var(--rck-white);
}
a {
    color: var(--rck-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: var(--rck-secondary);
        text-decoration: underline;
    }

/* Header */
header {
    background-color: var(--rck-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid var(--rck-border);
}

.logo {
    max-height: 70px;
    width: auto;
}

.site-title {
    font-size: 1.6rem;
    margin: 0;
    color: var(--rck-primary);
    font-weight: 700;
}

.user-info {
    text-align: right;
    font-weight: 500;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

    .user-info .badge {
        font-size: 0.8rem;
        padding: 5px 8px;
    }

/* Navigācija */
.navbar {
    padding: 0;
    background-color: var(--rck-primary);
}

.navbar-nav {
    width: 100%;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--rck-white) !important;
    font-weight: 500;
    padding: 15px 20px !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

    .nav-link:hover, .nav-item.active .nav-link {
        background-color: var(--rck-dark);
    }

.dropdown-menu {
    border: none;
    margin-top: 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.dropdown-item {
    padding: 10px 20px;
    border-bottom: 1px solid var(--rck-border);
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover, .dropdown-item:focus {
        background-color: var(--rck-light);
        color: var(--rck-primary);
    }

/* Breadcrumb navigācija */
.breadcrumb {
    background-color: transparent;
    padding: 10px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--rck-border);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--rck-text-light);
}

/* Galvenais saturs */
.main-content {
    flex: 1;
    padding: 20px 0 40px;
}

/* Alerts */
.alert {
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.alert-info {
    background-color: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
    border-left: 4px solid #0dcaf0;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-left: 4px solid #ffc107;
}

/* Cookie paziņojums */
.cookie-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 0;
    z-index: 1050;
    border-radius: 0;
    background-color: rgba(52, 58, 64, 0.95);
    color: #fff;
    border: none;
}

    .cookie-alert a {
        color: #8ed9f6;
        text-decoration: underline;
    }

    .cookie-alert .btn-primary {
        background-color: var(--rck-secondary);
        border-color: var(--rck-secondary);
    }

    .cookie-alert .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%);
    }

/* Kartiņas un paneļi */
.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.card-header {
    background-color: var(--rck-primary);
    color: var(--rck-white);
    font-weight: 600;
    padding: 15px 20px;
    border: none;
}

.card-body {
    padding: 20px;
}

/* Pogas */
.btn {
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--rck-primary);
    border-color: var(--rck-primary);
}

    .btn-primary:hover {
        background-color: var(--rck-dark);
        border-color: var(--rck-dark);
    }

.btn-secondary {
    background-color: var(--rck-secondary);
    border-color: var(--rck-secondary);
}

    .btn-secondary:hover {
        background-color: #c45d00; /* Tumšāks variants no oranžās */
        border-color: #c45d00;
    }

.btn-outline-primary {
    color: var(--rck-primary);
    border-color: var(--rck-primary);
}

    .btn-outline-primary:hover {
        background-color: var(--rck-primary);
        color: var(--rck-white);
    }

/* Formas */
.form-control {
    border-radius: 4px;
    padding: 10px 12px;
    border: 1px solid var(--rck-border);
}

    .form-control:focus {
        border-color: var(--rck-primary);
        box-shadow: 0 0 0 0.2rem rgba(44, 86, 151, 0.25);
    }

label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--rck-text);
}

.form-group {
    margin-bottom: 20px;
}

/* Tabulas */
.table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 1rem;
    color: var(--rck-text);
}

    .table th {
        background-color: var(--rck-light);
        border-top: none;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        padding: 15px;
        border-bottom: 2px solid var(--rck-primary);
    }

    .table td {
        padding: 12px 15px;
        vertical-align: middle;
        border-top: 1px solid var(--rck-border);
    }

.table-hover tbody tr:hover {
    background-color: rgba(44, 86, 151, 0.05);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Kājene */
footer {
    background-color: var(--rck-primary);
    color: var(--rck-white);
    padding: 40px 0 20px;
    margin-top: auto;
}

    footer h5 {
        color: var(--rck-white);
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    footer a {
        color: rgba(255, 255, 255, 0.8);
    }

        footer a:hover {
            color: var(--rck-white);
        }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

    .social-links a:hover {
        background-color: var(--rck-secondary);
        color: var(--rck-white);
        transform: translateY(-3px);
    }

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Bootstrap pielagojumi */
.navbar-toggler {
    border: none;
    padding: 8px;
    margin: 8px 0;
    background-color: rgba(255, 255, 255, 0.1);
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsīvais dizains */
@media (max-width: 992px) {
    .site-title {
        font-size: 1.3rem;
    }

    .navbar-toggler {
        background-color: rgba(255, 255, 255, 0.15);
    }

    .nav-link {
        padding: 10px 15px !important;
    }
}

@media (max-width: 768px) {
    .header-top {
        text-align: center;
    }

    .site-title {
        margin: 10px 0;
        font-size: 1.2rem;
    }

    .user-info {
        justify-content: center;
        margin-top: 10px;
    }

    .nav-item.active .nav-link {
        background-color: transparent;
        color: var(--rck-secondary) !important;
    }

    .navbar-collapse {
        background-color: var(--rck-primary);
    }

    .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 0;
        box-shadow: none;
    }

    .social-links {
        margin-top: 15px;
        text-align: center;
    }

    footer [class*="col-"] {
        margin-bottom: 20px;
        text-align: center;
    }
}

/* Animācijas un pārejas */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Utilītklases */
.text-primary {
    color: var(--rck-primary) !important;
}

.text-secondary {
    color: var(--rck-secondary) !important;
}

.bg-primary {
    background-color: var(--rck-primary) !important;
}

.bg-secondary {
    background-color: var(--rck-secondary) !important;
}

.bg-light {
    background-color: var(--rck-light) !important;
}

.border-primary {
    border-color: var(--rck-primary) !important;
}

/* Papildu klases reflektantu reģistrācijas formai */
.registration-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

    .registration-steps::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: var(--rck-border);
        z-index: 1;
    }

.step {
    position: relative;
    z-index: 2;
    background-color: #f8f9fa;
    padding: 0 10px;
    text-align: center;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--rck-gray);
    color: var(--rck-text);
    font-weight: bold;
    margin: 0 auto 10px;
    border: 2px solid var(--rck-border);
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--rck-primary);
    color: white;
    border-color: var(--rck-primary);
}

.step.completed .step-number {
    background-color: var(--rck-secondary);
    color: white;
    border-color: var(--rck-secondary);
}

.step-title {
    font-size: 0.9rem;
    color: var(--rck-text-light);
    transition: color 0.3s ease;
}

.step.active .step-title,
.step.completed .step-title {
    color: var(--rck-text);
    font-weight: 500;
}

/* Login form styling */
.login-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

    .login-form h2 {
        text-align: center;
        margin-bottom: 20px;
    }

.form-floating {
    margin-bottom: 15px;
}

.btn-login {
    width: 100%;
    padding: 10px;
}

/* Status checking */
.status-result {
    padding: 20px;
    background-color: var(--rck-light);
    border-radius: 4px;
    margin-top: 20px;
    border-left: 4px solid var(--rck-primary);
}

.status-pending {
    border-left-color: #ffc107;
}

.status-approved {
    border-left-color: #28a745;
}

.status-rejected {
    border-left-color: #dc3545;
}

.status-icon {
    font-size: 2rem;
    margin-right: 15px;
}

/* Dokumentu augšupielāde */
.document-upload {
    border: 2px dashed var(--rck-border);
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background-color: var(--rck-white);
}

    .document-upload:hover {
        border-color: var(--rck-primary);
        background-color: var(--rck-light);
    }

    .document-upload .upload-icon {
        font-size: 2rem;
        color: var(--rck-text-light);
        margin-bottom: 10px;
    }

.document-list {
    list-style: none;
    padding: 0;
}

.document-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--rck-border);
}

    .document-item:last-child {
        border-bottom: none;
    }

.document-icon {
    margin-right: 10px;
    color: var(--rck-text-light);
    font-size: 1.5rem;
}

.document-info {
    flex-grow: 1;
}

.document-name {
    font-weight: 500;
    margin-bottom: 0;
}

.document-meta {
    font-size: 0.85rem;
    color: var(--rck-text-light);
}

.document-actions {
    display: flex;
    gap: 5px;
}

/* Iestājpārbaudījumu tabula */
.exam-schedule {
    margin-bottom: 30px;
}

.exam-date {
    font-weight: bold;
    color: var(--rck-primary);
}

.exam-time {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--rck-light);
    border-radius: 3px;
    margin-right: 10px;
}

.exam-location {
    font-style: italic;
}

/* Administratora panelis */
.admin-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: var(--rck-white);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rck-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--rck-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-actions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.action-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: var(--rck-white);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .action-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.action-icon {
    font-size: 2rem;
    color: var(--rck-primary);
    margin-bottom: 15px;
}

.action-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.action-description {
    color: var(--rck-text-light);
    font-size: 0.9rem;
    flex-grow: 1;
}

/* Rezultātu publicēšanas komponenti */
.result-filters {
    background-color: var(--rck-light);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.filter-group {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 500;
    margin-bottom: 0;
    white-space: nowrap;
}

/* Pārlūkošanas elementi */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background-color: var(--rck-white);
    color: var(--rck-text);
    transition: all 0.3s ease;
    border: 1px solid var(--rck-border);
}

    .page-link:hover {
        background-color: var(--rck-light);
        color: var(--rck-primary);
        text-decoration: none;
    }

.page-item.active .page-link {
    background-color: var(--rck-primary);
    color: var(--rck-white);
    border-color: var(--rck-primary);
}

.page-item.disabled .page-link {
    color: var(--rck-text-light);
    pointer-events: none;
    background-color: var(--rck-white);
}

/* Mobilās saskarnes papildu uzlabojumi */
@media (max-width: 576px) {
    .admin-stats,
    .admin-actions {
        grid-template-columns: 1fr;
    }

    .stat-card {
        margin-bottom: 15px;
    }

    .card-header {
        padding: 12px 15px;
    }

    .card-body {
        padding: 15px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .table-responsive {
        font-size: 0.9rem;
    }

    .pagination-container {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .cookie-alert {
        text-align: center;
    }

        .cookie-alert .container {
            flex-direction: column;
        }

        .cookie-alert .btn {
            margin-top: 10px;
        }
}

/* Printēšanas stili */
@media print {
    header,
    footer,
    .navbar,
    .no-print {
        display: none !important;
    }

    body {
        background-color: white;
    }

    .main-content {
        padding: 0;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .card-header {
        background-color: #f0f0f0 !important;
        color: black !important;
    }

    a {
        text-decoration: none !important;
        color: black !important;
    }

    .table th {
        background-color: #f0f0f0 !important;
        color: black !important;
    }
}
me.css */
/* Veiksmes paziņojums */
.alert-success {
    color: #065F46;
    background-color: #D1FAE5;
    border-color: #10B981;
}

.alert-success .alert-link {
    color: #064e3b; /* Tumšāks tonis linkiem */
}

/* Informācijas paziņojums */
.alert-info {
    color: #1E3A8A;
    background-color: #DBEAFE;
    border-color: #3B82F6;
}

    .alert-info .alert-link {
        color: #1a3166; /* Tumšāks tonis linkiem */
    }

/* Brīdinājuma paziņojums */
.alert-warning {
    color: #92400E;
    background-color: #FEF3C7;
    border-color: #F59E0B;
}

    .alert-warning .alert-link {
        color: #78350f; /* Tumšāks tonis linkiem */
    }

/* Kļūdas paziņojums */
.alert-danger {
    color: #991B1B;
    background-color: #FEE2E2;
    border-color: #EF4444;
}

    .alert-danger .alert-link {
        color: #7f1d1d; /* Tumšāks tonis linkiem */
    }
.card-title {
    color: var(--rck-white);
    font-size: 22px;
}
h4 {
    font-size: 20px;
}
.upload-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 20px;
    z-index: 9999;
    text-align: center;
}

    .upload-progress .progress {
        max-width: 500px;
        margin: 0 auto;
    }


.informative-progress {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.progress-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.progress-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.progress-steps-container {
    position: relative;
}

.progress-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    position: relative;
    margin: 0;
    padding: 0;
}



.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 0.25rem;
    border-radius: 8px;
}

    .step-item:hover {
        background: rgba(255,255,255,0.8);
        transform: translateY(-2px);
    }

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.25rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid;
}

    .step-icon.completed {
        background: #28a745;
        border-color: #28a745;
        color: white;
        box-shadow: 0 2px 8px rgba(40,167,69,0.3);
    }

    .step-icon.in-progress {
        background: #ffc107;
        border-color: #ffc107;
        color: white;
        box-shadow: 0 2px 8px rgba(255,193,7,0.3);
        animation: pulse-informative 2s infinite;
    }

    .step-icon.available {
        background: #007bff;
        border-color: #007bff;
        color: white;
        box-shadow: 0 2px 8px rgba(0,123,255,0.3);
    }

    .step-icon.not-started {
        background: white;
        border-color: #dee2e6;
        color: #6c757d;
    }

.step-item.not-started {
    cursor: not-allowed;
    opacity: 0.6;
}

@keyframes pulse-informative {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255,193,7,0.3), 0 0 0 0 rgba(255,193,7,0.7);
    }

    50% {
        box-shadow: 0 2px 8px rgba(255,193,7,0.3), 0 0 0 10px rgba(255,193,7,0);
    }
}

.step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #495057;
    line-height: 1.2;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-status {
    font-size: 0.7rem;
    margin-top: 0.25rem;
    padding: 0.125rem 0.375rem;
    border-radius: 12px;
    font-weight: 500;
}

    .step-status.completed {
        background: rgba(40,167,69,0.1);
        color: #28a745;
    }

    .step-status.in-progress {
        background: rgba(255,193,7,0.1);
        color: #856404;
    }

    .step-status.available {
        background: rgba(0,123,255,0.1);
        color: #0056b3;
    }

    .step-status.not-started {
        background: rgba(108,117,125,0.1);
        color: #6c757d;
    }

.current-action {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(0,123,255,0.05);
    border-left: 4px solid #007bff;
    border-radius: 0 6px 6px 0;
}

    .current-action h6 {
        margin: 0 0 0.25rem 0;
        color: #0056b3;
        font-size: 0.875rem;
    }

    .current-action p {
        margin: 0;
        font-size: 0.8rem;
        color: #6c757d;
    }

.action-buttons {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .progress-steps {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.25rem;
    }

    .step-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .step-status {
        font-size: 0.6rem;
        padding: 0.1rem 0.25rem;
    }
}

@media (max-width: 768px) {
    .progress-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .progress-stats {
        gap: 0.75rem;
    }

    .current-action {
        margin-top: 0.5rem;
        padding: 0.5rem;
    }
}

@media (max-width: 576px) {
    .step-item {
        padding: 0.25rem 0.125rem;
    }

    .step-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .step-label {
        font-size: 0.6rem;
        min-height: 2em;
    }
}