.header-tracking h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.header-tracking p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.stepper-container {
    padding: 40px 30px;
}

.stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 70%;
    background: #e2e8f0;
    z-index: 1;
}

.stepper.step-1::before {
    background: linear-gradient(to right, #709ad8 15%, #e2e8f0 15%);
}

.stepper.step-2::before {
    background: linear-gradient(to right, #709ad8 50%, #e2e8f0 50%);
}

.stepper.step-3::before {
    background: linear-gradient(to right, #709ad8 85%, #e2e8f0 85%);
}

.stepper.step-4::before {
    background: #709ad8;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 4px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #64748b;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.step.active .step-circle,
.step.completed .step-circle {
    background: #709ad8;
    border-color: #709ad8;
    color: white;
}

.step.current .step-circle {
    background: #709ad8;
    border-color: #709ad8;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.step-label {
    text-align: center;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 0.9rem;
    height: 60px;
}

.step.active .step-label,
.step.completed .step-label,
.step.current .step-label {
    color: #709ad8;
}

.step-description {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 5px;
}

.comments-section {
    background: #f8fafc;
    padding: 30px;
    border-top: 1px solid #e2e8f0;
    border-radius: 20px;
}

.comments-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* .comments-title::before {
    content: '<img draggable="false" role="img" class="emoji" alt="💬" src="https://s.w.org/images/core/emoji/16.0.1/svg/1f4ac.svg">';
    margin-right: 10px;
    font-size: 1.2rem;
} */

.comment-note {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    color: #709ad8;
}

.comment-time {
    font-size: 0.8rem;
    color: #94a3b8;
}

.comment-text {
    color: #4b5563;
    line-height: 1.5;
}

.bottom-navigation {
    padding: 20px 30px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-button.primary {
    background: #709ad8;
    color: white;
}

.nav-button.primary:hover {
    background: #2563eb;
}

.nav-button.secondary {
    background: #e2e8f0;
    color: #64748b;
}

.nav-button.secondary:hover {
    background: #cbd5e1;
}

.status-badge {
    background: #e2e8f0;
    color: #709ad8;
    padding: 6px 20px;
    border-radius: 200px;
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    width: max-content;
    margin: auto;
}

@media (max-width: 768px) {
    .stepper {
        flex-direction: column;
        gap: 30px;
    }

    .stepper::before {
        display: none;
    }

    .step {
        width: 100%;
    }

    .step::after {
        content: '';
        position: absolute;
        bottom: -33px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 101px;
        background: #e2e8f0;
        z-index: -1;
        display: none;
    }

    .step:last-child::after {
        display: none;
    }

    .step.completed::after {
        background: #438ab4;
    }

    .bottom-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .nav-button {
        width: 100%;
        text-align: center;
    }
    .step-circle {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }
    .step-label {
        text-align: center;
        font-weight: 600;
        color: #e2e8f0;
        font-size: 1.4rem;
        margin-top: 14px;
    }
    .status-badge {
        padding: 8px 24px;
        font-size: 0.9rem;
        font-weight: 600;
    }
}
