/* Styles pour la médiathèque */
.media-library-section {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.media-library-title {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.media-library-description {
    color: #e0e0e0;
    font-style: italic;
}

/* Styles pour les onglets */
.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 8px 8px 0 0;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.nav-tabs .nav-link.active {
    color: #333;
    background-color: #f8f9fa;
    font-weight: 600;
}

.tab-content {
    background-color: #f8f9fa;
    color: #333;
    border-radius: 0 0 8px 8px;
}