/* 
.progress {
    overflow: hidden;
    position: relative;
}

.progress-bar {
    transition: width 0.6s ease;
    position: relative;
    overflow: visible;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.plan-status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.status-active { background-color: #28a745; }
.status-overdue { background-color: #dc3545; }
.status-completed { background-color: #6c757d; }

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #007bff;
    background: white;
}

.timeline-item.paid::before {
    background: #28a745;
    border-color: #28a745;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    width: 2px;
    height: calc(100% + 20px);
    background: #dee2e6;
}

.timeline-item:last-child::after {
    display: none;
}

.sfc-plan-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sfc-plan-card:hover {
    border-color: #3f0d7d;
    box-shadow: 0 10px 30px rgba(63, 13, 125, 0.1);
}

.card-stat {
    border-radius: 12px;
    border: none;
    transition: transform 0.3s ease;
}

.card-stat:hover {
    transform: translateY(-5px);
}

.badge {
    padding: 6px 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-control:focus {
    border-color: #3f0d7d;
    box-shadow: 0 0 0 0.25rem rgba(63, 13, 125, 0.25);
}

.btn-dark {
    background-color: #3f0d7d;
    border-color: #3f0d7d;
}

.btn-dark:hover {
    background-color: #2e095d;
    border-color: #2e095d;
} */