/* Styles pour les programmes */
.programmes-tabs {
    background: #f8f9fa;
    border-radius: 50px;
    padding: 10px;
    border: none;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.programmes-tabs .nav-link {
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.programmes-tabs .nav-link:hover {
    background: rgba(33, 145, 45, 0.1);
    color: #21912d;
}

.programmes-tabs .nav-link.active {
    background: #21912d;
    color: white;
}

/* Styles des cartes de programme */
.programme-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.programme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.programme-card h5 {
    color: #21912d;
    margin-bottom: 15px;
    font-weight: 600;
}

.programme-card p {
    color: #666;
    margin-bottom: 20px;
}

.programme-card .btn-learn-more {
    background: #21912d;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    transition: all 0.3s ease;
    border: 2px solid #21912d;
}

.programme-card .btn-learn-more:hover {
    background: transparent;
    color: #21912d;
}

/* Styles des modales */
.modal-content {
    border: none;
    border-radius: 20px;
}

.modal-header {
    background: #f8f9fa;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
}

.modal-header .modal-title {
    color: #21912d;
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h6 {
    color: #21912d;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-section h6 i {
    font-size: 1.2rem;
}

.modal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.modal-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-section ul li:before {
    content: "•";
    color: #21912d;
    position: absolute;
    left: 0;
    top: 0;
}

/* Animation des transitions */
.tab-pane.fade {
    transition: opacity 0.3s ease-in-out;
}

.tab-pane.fade.show {
    opacity: 1;
} 