﻿﻿.progress {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 10px;
}

.progress__label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
}

.progress__bar {
    width: 100%;
    height: 4px;
    background-color: #d6d6d6;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bar__progress {
    height: 100%;
    background-color: #1d70b8;
    transition: width 0.3s ease-in-out;
}