/* Styles pour la page de disponibilité */
.disponibilite-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.disponibilite-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.disponibilite-intro h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.5rem;
}

.disponibilite-intro h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff4d79;
    margin-bottom: 1.5rem;
}

.disponibilite-intro p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.disponibilite-intro p.important {
    color: #ff4d79;
    font-weight: 600;
    margin-top: 1.5rem;
}

.assmat-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.assmat-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.assmat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.assmat-header {
    background: linear-gradient(135deg, #ff4d79 0%, #ff6b6b 100%);
    color: #fff;
    padding: 1.5rem 2rem;
}

.assmat-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.assmat-content {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.assmat-infos {
    flex: 1;
    min-width: 280px;
}

.assmat-infos p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.assmat-infos a {
    color: #ff4d79;
    font-weight: 600;
    transition: color 0.3s;
}

.assmat-infos a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.assmat-dispo {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid #ff4d79;
}

.assmat-dispo h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
}

.dispo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #43cbff 0%, #4facfe 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.dispo-badge.immediate {
    background: linear-gradient(135deg, #a9f5b3 0%, #58e8b8 100%) !important;
    box-shadow: 0 5px 15px rgba(88, 232, 184, 0.3) !important;
}

.dispo-badge.unavailable {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4d79 100%) !important;
    box-shadow: 0 5px 15px rgba(255, 77, 121, 0.3) !important;
}

.dispo-details {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive design */
@media (max-width: 768px) {
    .assmat-content {
        flex-direction: column;
    }
    
    .disponibilite-intro h3 {
        font-size: 1.5rem;
    }
    
    .disponibilite-intro h4 {
        font-size: 1.2rem;
    }
    
    .assmat-header h3 {
        font-size: 1.5rem;
    }
}