.fsp-container {
    margin: 15px 0;
}

.fsp-message {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    text-align: center;
}

.fsp-warning {
    background: #fff3cd;
    color: #856404;
}

.fsp-success {
    background: #d4edda;
    color: #155724;
}

.fsp-progressbar {
    width: 100%;
    background: #e9ecef;
    border-radius: 10px;
    height: 20px;
    overflow: hidden;
    position: relative;
}

.fsp-progress {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #28a745);
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.fsp-percent {
    position: relative;
    z-index: 2;
}

