:root {
    --primary-color: #21cdc0;
    --secondary-color: #2c3e50;
}
.order-status-page {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
}

.status-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.status-section__title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e7ebef;
}

.status-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    border: 1px solid #e7ebef;
    border-radius: 5px;
    color: #2c3e50;
}

.btn-check {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-check:hover {
    background: var(--secondary-color);
    color: #fff;
}

.order-details {
    display: none;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e7ebef;
}

.order-details.active {
    display: block;
}

.order-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.order-info__item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.order-info__label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.order-info__value {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

.status-timeline {
    position: relative;
    padding: 20px 0;
}

.status-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e7ebef;
}

.status-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.status-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e7ebef;
}

.status-item.active::before {
    background: var(--primary-color);
}

.status-item.completed::before {
    background: #28a745;
}

.status-item__date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.status-item__title {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 5px;
}

.status-item__description {
    font-size: 14px;
    color: #6c757d;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.status-badge--pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge--processing {
    background: #cce5ff;
    color: #004085;
}

.status-badge--completed {
    background: #d4edda;
    color: #155724;
}

.status-badge--cancelled {
    background: #f8d7da;
    color: #721c24;
}

@media (max-width: 767px) {
    .order-info {
        grid-template-columns: 1fr;
    }
}


.report-not-found {
    text-align: center;
    padding: 40px 20px;
}

.report-not-found__icon {
    font-size: 64px;
    color: #6c757d;
    margin-bottom: 20px;
}

.report-not-found__title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.report-not-found__text {
    color: #6c757d;
    margin-bottom: 30px;
}