.repair-page {
    background: #f5f6f8;
    padding: 40px 15px 60px;
    min-height: 100vh;
}

.repair-container {
    max-width: 980px;
    margin: 0 auto;
}

.repair-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    padding: 28px;
    margin-bottom: 24px;
}

.repair-header-card {
    padding: 32px;
}

.repair-brand {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.repair-logo-wrap {
    width: 190px;
    height: 110px;
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ececec;
    overflow: hidden;
    flex-shrink: 0;
}

.repair-logo {
    max-width: 90%;
    max-height: 90%;
    display: block;
}

.repair-brand-text {
    flex: 1;
    min-width: 260px;
}

.repair-title {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.15;
    color: #1d1d1f;
    font-weight: 700;
}

.repair-intro {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.repair-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.repair-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.repair-field input {
    width: 100%;
    height: 46px;
    border: 1px solid #d7dce3;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 15px;
    color: #222;
    background: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.repair-field input:focus {
    outline: none;
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.repair-actions {
    margin-top: 20px;
}

.repair-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 48px;
    border: 0;
    border-radius: 12px;
    background: #79b77b;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.repair-btn:hover {
    background: #2a2a2a;
}

.repair-alert {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.repair-alert-error {
    background: #fff1f1;
    color: #b42318;
    border: 1px solid #f5c2c7;
}

.repair-status-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.repair-status-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.repair-status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid transparent;
}

.repair-last-update {
    text-align: right;
    color: #666;
    font-size: 14px;
}

.repair-last-update span {
    display: block;
    margin-bottom: 6px;
}

.repair-last-update strong {
    color: #111;
    font-size: 15px;
}

.repair-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.repair-info-item {
    background: #f9fafb;
    border: 1px solid #eceff3;
    border-radius: 14px;
    padding: 16px;
}

.repair-info-item-wide {
    grid-column: span 2;
}

.repair-info-title {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.repair-info-item strong {
    color: #1d1d1f;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.repair-section-title {
    margin: 0 0 24px;
    font-size: 26px;
    line-height: 1.2;
    color: #1d1d1f;
    font-weight: 700;
}

.repair-timeline {
    position: relative;
}

.repair-timeline-item {
    position: relative;
    display: flex;
    gap: 16px;
    padding-bottom: 22px;
}

.repair-timeline-item:last-child {
    padding-bottom: 0;
}

.repair-timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 18px;
    width: 2px;
    bottom: -4px;
    background: #d9dee5;
}

.repair-timeline-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #111;
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
    z-index: 2;
    border: 1px solid transparent;
}

.repair-timeline-content {
    flex: 1;
    background: #f9fafb;
    border: 1px solid #eceff3;
    border-radius: 14px;
    padding: 14px 16px;
}

.repair-timeline-date {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.repair-timeline-status {
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 6px;
}

.repair-timeline-note {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

.status-yellow {
    background: #fef3c7 !important;
    color: #92400e !important;
    border-color: #fcd34d !important;
}

.status-blue {
    background: #dbeafe !important;
    color: #1d4ed8 !important;
    border-color: #93c5fd !important;
}

.status-orange {
    background: #ffedd5 !important;
    color: #c2410c !important;
    border-color: #fdba74 !important;
}

.status-green {
    background: #dcfce7 !important;
    color: #166534 !important;
    border-color: #86efac !important;
}

.status-dark {
    background: #e5e7eb !important;
    color: #111827 !important;
    border-color: #9ca3af !important;
}

.status-default {
    background: #f3f4f6 !important;
    color: #374151 !important;
    border-color: #d1d5db !important;
}



@media (max-width: 767px) {
    .repair-page {
        padding: 20px 10px 40px;
    }

    .repair-card {
        padding: 20px;
        border-radius: 16px;
    }

    .repair-title {
        font-size: 28px;
    }

    .repair-form-grid,
    .repair-info-grid {
        grid-template-columns: 1fr;
    }

    .repair-info-item-wide {
        grid-column: span 1;
    }

    .repair-last-update {
        text-align: left;
    }

    .repair-btn {
        width: 100%;
    }

    .repair-logo-wrap {
        width: 90px;
        height: 90px;
    }
}