.progress-card {
    background-color: #ffffff;
    border-radius: 17px;
    padding: 23px 15px 23px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
}

.step-label {
    color: #979C9E;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.progress-custom {
    height: 11px;
    background-color: #e9ecef;
    border-radius: 100px;
    overflow: hidden;
}

.progress-bar-custom {
    background: linear-gradient(90deg, #36D1DC 0%, #5B86E5 100%);
    border-radius: 4px;
}

@media (max-width: 767.98px) {
    .progress-card {
        max-width: 100%;
        border-radius: 8px;
        padding: 6px 12px 6px 12px;
    }

    .step-label {
        font-size: 12px;
    }

    .progress-custom {
        height: 8px;
    }
}