/* Styling for the entire bar */
.fsb-bar {
    background-color: #eafcff !important;
    color: #000 !important;
    border: 2px dashed #0000001f;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

/* Wrapper for the progress bar */
.fsb-progress-wrapper {
    background-color: #e0e0e0;
    height: 8px; /* Height of the progress bar */
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
    width: 100%; /* Ensure the wrapper spans the full available width */
}

/* The progress bar itself */
.fsb-progress {
    background-color: #25b5cc; /* Green color for the progress */
    height: 100%; /* Ensure it fills the height of the wrapper */
    transition: width 0.3s ease-in-out; /* Smooth transition when width changes */
}
