:root {
    --primary-blue: #2c3e50;
    --secondary-blue: #34495e;
    --accent-teal: #6fc5d4;
    --success-green: #7cb342;
}

body {
    background-color: #f8f9fa;
    font-family: Lato, sans-serif;
}

.navbar {
    background-color: var(--primary-blue) !important;
}

.navbar-brand {
    color: white !important;
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-brand i {
    color: var(--accent-teal);
    margin-right: 0.5rem;
}

.welcome-text {
    color: #fff;
    margin-right: 2rem;
}

.search-box {
    width: 300px;
}

.progress-header {
    background-color: var(--secondary-blue);
    color: #75FBF8;
    text-align: center;
    font: normal normal normal 16px/19px Lato;
    letter-spacing: 0px;
    opacity: 1;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #6c757d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-circle.active {
    background-color: var(--accent-teal);
}

.step-circle.completed {
    background-color: var(--success-green);
}

.step-circle.completed::after {
    content: '✓';
    font-size: 1.2rem;
}

.step-label {
    font-size: 0.9rem;
    text-align: center;
    color: #adb5bd;
}

.step.active .step-label {
    color: white;
}

.step-connector {
    position: absolute;
    top: 20px;
    left: 50%;
    right: -50%;
    height: 2px;
    background-color: #6c757d;
    z-index: 1;
}

.step:last-child .step-connector {
    display: none;
}

.step.completed .step-connector {
    background-color: #48afc1;
}

.step:last-child .step-circle {
    background-color: #6c757d;
}

.step.completed .step-circle {
    background-color: #48afc1;
}

.main-content {
    max-width: 70%;
    margin: 0 auto;
    padding: 2rem;
}

.form-section-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--accent-teal);
    border-color: var(--accent-teal);
    padding: 0.75rem 2rem;
}

.btn-primary:hover {
    background-color: #5fb3c2;
    border-color: #5fb3c2;
}

.btn-primary[disabled]{
    opacity: 0.5;
    background: grey;
    border: 1px solid gray; 
}

.btn-outline-primary {
    color: var(--accent-teal);
    border-color: var(--accent-teal);
    padding: 0.75rem 2rem;
}

.module-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.module-card.selected {
    border-color: var(--accent-teal);
    background-color: #f0f9ff;
}

.form-check-input:checked {
    background-color: var(--accent-teal);
    border-color: var(--accent-teal);
}

.success-modal {
    background-color: rgba(0,0,0,0.8);
}

.success-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--success-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 1rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.timeline-dot.completed {
    background-color: var(--success-green);
}

.timeline-dot.current {
    background-color: var(--accent-teal);
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .progress-steps {
        flex-wrap: wrap;
    }
    
    .step {
        margin-bottom: 1rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .main-content {
        padding: 1rem;
    }
}