﻿.progress-indicator {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    position: relative;
}

    .progress-indicator::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #f0f0f0;
        z-index: 1;
    }

    .progress-indicator li {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        position: relative;
        z-index: 2;
    }

        .progress-indicator li.completed .bubble {
            background-color: #198754;
            color: white;
        }

        .progress-indicator li.active .bubble {
            background-color: #0d6efd;
            color: white;
            transform: scale(1.2);
        }

.bubble {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: yellow;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.card {
    border: none;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }

.card-header {
    border-radius: 12px 12px 0 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.btn {
    transition: all 0.2s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.form-control, .form-select {
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #ddd;
}

    .form-control:focus, .form-select:focus {
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
        border-color: #86b7fe;
    }
