:root {
    --primary-color: #ff6b00;
    --secondary-color: #2d3436;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #d63031;
    --background-color: #f8f9fa;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    background: linear-gradient(135deg, #ff9800, #ff5722); /* Оранжевый градиент */
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.tracking-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.page-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.search-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.25);
}

.btn-track {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-track:hover {
    background: #ff8533;
    transform: translateY(-2px);
}

.order-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--card-shadow);
}

.tracking-step {
    position: relative;
    padding: 1rem 0;
    border-left: 2px solid #e9ecef;
    margin-left: 1rem;
    padding-left: 2rem;
}

.tracking-step:last-child {
    border-left: none;
}

.status-icon {
    position: absolute;
    left: -1rem;
    width: 2rem;
    height: 2rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.status-icon.completed {
    background: var(--success-color);
    color: white;
}

.status-icon.current {
    background: var(--warning-color);
    color: white;
}

.tracking-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.btn-back {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back:hover {
    background: #3d4246;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .tracking-container {
        padding: 1rem;
        margin: 1rem;
    }
}