html, body {
    margin: 0;
    padding: 0;
    min-width: 800px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-image: url('/data/images/image_logo.jpg'); /* Chemin vers votre image de fond */
    background-size: 30vw 50vh;
    background-position: top left; /* Positionner l'image en haut à gauche */
    background-attachment: fixed; /* Image de fond fixée */
    background-repeat: no-repeat; /* Empêche l'image de se répéter */
    position: relative;
    height: 100%;
}

/* Enlever l'image de fond pour les pages avec la classe no-background */
body.no-background {
    background-image: none;
    background-color: #ffffff; /* Vous pouvez définir une couleur de fond si nécessaire */
}

.openModal {
    cursor: pointer; /* Définit le curseur comme une main */
}

body.modal-open {
    overflow: auto;
    position: fixed;
    width: 100%;
}

a:link {
    color: rgb(19, 83, 107);
    text-decoration: none;
}

a:visited {
    color: rgb(19, 83, 107);
    text-decoration: none;
}

a:hover {
    color: rgb(74, 152, 168);
    font-weight: normal;
}

a button {
    background-color: #4CAF50; /* Couleur de fond */
    color: white; /* Couleur du texte */
    border: none; /* Supprimer les bordures */
    padding: 10px 20px; /* Espacement autour du texte */
    text-align: center; /* Centrer le texte */
    font-size: 16px; /* Taille du texte */
    cursor: pointer; /* Changer le curseur au survol */
    border-radius: 5px; /* Bordure arrondie */
    text-decoration: none; /* Pour enlever les styles par défaut du lien */
  }
  
  a button:hover {
    background-color: #45a049; /* Changer la couleur de fond au survol */
  }


.menu,
.menu_logged_admin,
.admin_menu,
.menu_level2 {
    min-width: 800px;
    position: fixed;
    top: 50px;
    left: 17%;
    transform: translateX(0%);
    padding: 10px;
    border-radius: 8px;
    color: #333; /* Texte noir pour contraste */
    box-shadow: 0 0 10px rgba(83, 58, 58, 0.534); /* Légère ombre pour le contenu principal */
    background-color: rgba(182, 174, 174, 0.883); /* Blanc avec transparence à 90% */
    width: 66%;
    text-align: center; /* Align the text in the center */
    z-index: 400; /* Pour placer le menu au-dessus des autres éléments */
}

.menu_filter {
    display: flex;
    justify-content: space-between; /* Pour espace entre les éléments */
}

.menu, .menu_logged_admin {
    top: 20px;
    display: flex;
    height: 20px;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
    background-color: #173b49d8; 
    color: #fff; /* Texte blanc pour contraste */
}

.menu_logged_admin {
    background-color: #173b49d8;  /* Nouvelle couleur de fond pour .menu_admin */
}

.menu a, .menu_logged_admin a {
    color: #fff; /* Couleur du texte des liens */
    text-decoration: none; /* Supprimer le soulignement par défaut */
    border-radius: 8px;
    padding: 5px;
}

.menu a:hover, .menu_logged_admin a:hover {
    background-color: #637170; 
    color: #ffffff;
    border-radius: 3px;
    padding: 5px;
    font-size: 14px;
}

.right-menu {
    display: flex;
    align-items: center; /* Centre verticalement les éléments du .right-menu */
}
.right-menu form {
    display: flex;
    align-items: center; /* Centre verticalement les éléments du formulaire */
    margin-top: auto;
    margin-bottom: auto;
}

.menu_level2 {
    top: 70px;
    display: flex;
    height: 20px;
    justify-content: space-between;
    align-items: center;
    background-color: #314646dd;
    color: #fff; /* Texte blanc pour contraste */
    z-index: 20; /* Pour placer le menu au-dessus des autres éléments */
}


.menu_level2 a {
    color: #fff; /* Couleur du texte des liens */
    text-decoration: none; /* Supprimer le soulignement par défaut */
    border-radius: 3px;
    padding: 3px;
}

.menu_level2 a:hover {
    background-color: #ffffff; 
    color: #000000; /* Texte blanc pour contraste */
    border-radius: 3px;
    padding: 3px;
}

.menu3 {
    top: 20px;
    width: 300px;
    position: absolute;
    align-items: left;
    text-align: left;
    background-color: #ffffffe0; 
    color: #000000; /* Texte blanc pour contraste */
    z-index: 3; /* Pour placer le menu au-dessus des autres éléments */
    padding: 6px;
    border-radius: 5px;
}

.menu3 a {
    color: #000000; /* Couleur du texte des liens */
    text-decoration: none; /* Supprimer le soulignement par défaut */
    border-radius: 5px;
}

.menu3 a:hover {
    background-color: #696969d2; 
    color: #ffffff; /* Texte blanc pour contraste */
}

.admin_menu {
    display: flex;
    top: 82px;
    justify-content: space-between;
    align-items: center;
    background-color: #942f2f;
    height: 10px;
    color: #fff; /* Texte blanc pour contraste */
    z-index: 200;
}

.admin_menu a {
    color: #fff; /* Couleur du texte des liens */
    text-decoration: none; /* Supprimer le soulignement par défaut */
}

.admin_menu a:hover {
    background-color: #ffffff; 
    color: #000000; /* Texte blanc pour contraste */
}


/* Dropdown Button */
.dropbtn, .dropbtn2 {
    color: white;
    background-color: #173b4900;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer; /* Indique que le bouton est cliquable */
}

/* Bouton spécifique pour .dropbtn2 */
.dropbtn2 {
    color: rgb(0, 0, 0);
    background-color: #838383;
}

/* The container <div> - needed to position the dropdown content */
.dropdown, .dropdown2 {
    position: relative;
    display: inline-block;
}

.dropdown_menu {
    z-index: 1; /* Pour placer le menu au-dessus des autres éléments */
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content, .dropdown-content2 {
    display: block;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    background-color: #1d3243;
    border-radius: 5px;
    width: 200px;
    padding: 3px;
    box-shadow: 0px 8px 16px 0px rgb(0, 0, 0);
    border: 1px solid #919191;
    z-index: 310;
    transition: opacity 0.6s ease, visibility 0.6s ease, max-height 0.6s ease;
}

/* Links inside the dropdown */
.dropdown-content a, .dropdown-content2 a {
    color: rgb(255, 255, 255);
    padding: 3px;
    text-decoration: none;
    display: block;
    text-align: left;
    z-index: 310;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover, .dropdown-content2 a:hover {
    background-color: #ddd;
    color: black;
    padding: 5px;
    z-index: 310;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content, .dropdown2:hover .dropdown-content2 {
    opacity: 1;
    visibility: visible;
    max-height: 500px; /* Assurez-vous que cela soit suffisamment grand pour contenir tout le contenu */
}



/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn, .dropdown2:hover .dropbtn, .dropdown2:hover .dropbtn2 {
    background-color: #536878;
    color: rgb(255, 255, 255);
    font-size: 14px;
    border-radius: 3px;
}

.main-content {
    font-size: 14px;
    min-width: 800px;
    min-height: 400px; /* Utilisation de min-height à la place de height */
    position: relative;
    top: 70px;
    left: 17%;
    transform: translateX(0%);
    padding: 10px;
    border-radius: 8px;
    color: #333; /* Texte noir pour contraste */
    box-shadow: 0 0 10px rgba(83, 58, 58, 0.534); /* Légère ombre pour le contenu principal */
    background-color: rgba(182, 174, 174, 0.442); /* Blanc avec transparence à 90% */
    width: 66%;
    text-align: center; /* Align the text in the center */
    z-index: 2; /* Pour placer le menu au-dessus des autres éléments */
}

.main-content-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centrer les éléments verticalement */
    font-size: 14px;
    min-width: 800px;
    min-height: 80vh;
    position: relative;
    top: 70px;
    left: 17%;
    transform: translateX(0%);
    padding: 10px;
    border-radius: 8px;
    color: #333; /* Texte noir pour contraste */
    box-shadow: 0 0 10px rgba(83, 58, 58, 0.534); /* Légère ombre pour le contenu principal */
    background-color: rgba(182, 174, 174, 0.442); /* Blanc avec transparence à 90% */
    width: 66%;
    text-align: center; /* Align the text in the center */
    z-index: 2; /* Pour placer le menu au-dessus des autres éléments */
}

.main-content-full {
    font-size: 18px;
    min-width: 800px;
    min-height: 80%; /* Utilisation de min-height à la place de height */
    position: relative;
    top: 80px;
    left: 3%;
    transform: translateX(0%);
    padding: 10px;
    border-radius: 8px;
    color: #333; /* Texte noir pour contraste */
    box-shadow: 0 0 10px rgba(83, 58, 58, 0.534); /* Légère ombre pour le contenu principal */
    background-color: rgba(182, 174, 174, 0.442); /* Blanc avec transparence à 90% */
    width: 93%;
    text-align: center; /* Align the text in the center */
    z-index: 2; /* Pour placer le menu au-dessus des autres éléments */
}

.main-content-admin {
    min-width: 800px;
    min-height: 80%; /* Utilisation de min-height à la place de height */
    position: relative;
    font-size: 14px;
    top: 140px;
    left: 17%;
    transform: translateX(0%);
    padding: 10px;
    border-radius: 8px;
    color: #333; /* Texte noir pour contraste */
    box-shadow: 0 0 10px rgba(83, 58, 58, 0.534); /* Légère ombre pour le contenu principal */
    background-color: rgba(116, 108, 108, 0.274); /* Blanc avec transparence à 90% */
    width: 66%;
    text-align: center; /* Align the text in the center */
}

.files_explorer {
    font-size: 14px;
    min-width: 800px;
    min-height: 80%; /* Utilisation de min-height à la place de height */
    position: absolute;
    top: 100px;
    left: 17%;
    transform: translateX(0%);
    padding: 20px;
    border-radius: 8px;
    color: #333; /* Texte noir pour contraste */
    box-shadow: 0 0 10px rgba(83, 58, 58, 0.534); /* Légère ombre pour le contenu principal */
    background-color: rgba(182, 174, 174, 0.883); /* Blanc avec transparence à 90% */
    width: 66%;
    text-align: left; /* Align the text in the center */
}

.course_content {
    margin-left: 330px;
    margin-right: 0;
    display: block;
    text-align: left;
}

.course_menu {
    font-size: 14px;
    padding: 5px;
}

.section-header {
    font-size: 14px;
    padding: 5px;
    cursor: pointer;
}

.section-header:hover {
    background-color: #696969d2; 
    color: #ffffff; /* Texte blanc pour contraste */
}

.wrapper {  
    position: relative;
    min-height: 80%;
    padding-bottom: 100px; 
}

.main-content-level2 {
    position: absolute;
    top: 123px;
    left: 17%;
    font-size: 14px;
    min-height: 100%; /* Utilisation de min-height à la place de height */
    min-width: 800px; 
    transform: translateX(0%);
    padding: 10px;
    border-radius: 8px;
    color: #333; /* Texte noir pour contraste */
    box-shadow: 0 10px 10px -10px rgba(83, 58, 58, 0.534);
    background-color: rgba(116, 108, 108, 0.274); /* Blanc avec transparence à 90% */
    width: 66%;
    text-align: center; /* Align the text in the center */
    z-index: 3;
}

.main-content-tracks {
    position: absolute;
    top: 70px;
    left: 17%;
    font-size: 14px;
    min-width: 800px; 
    padding: 10px;
    border-radius: 8px;
    color: #333; /* Texte noir pour contraste */
    box-shadow: 0 10px 10px -10px rgba(83, 58, 58, 0.534);
    background-color: rgba(116, 108, 108, 0.274); /* Blanc avec transparence à 90% */
    width: 66%;
    text-align: center; /* Align the text in the center */
    z-index: 3;
}

.title-container {
    position: absolute;
    font-size: 20px;
    top: 20px;
    right: 20px;
    background-color: #173b49d8;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    color: white; /* Texte en blanc */
    font-weight: bold; /* Texte en gras */
}

.title-container.music {
    top: 20px; /* Modifie la position verticale pour la classe spécifique "music" */
}

.title-container-course {
    position: absolute;
    font-size: 20px;
    top: 20px;
    left: 340px;
    background-color: #173b49d8;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    color: white; /* Texte en blanc */
    font-weight: bold; /* Texte en gras */
}

.subscribe {
    position: fixed;
    font-size: 12px;
    bottom: 20px;
    right: 20px;
    background-color: #ffffffd8;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    color: rgb(0, 0, 0); /* Texte en blanc */
    font-weight: bold; /* Texte en gras */
}



.title-container-admin {
    position: absolute;
    font-size: 20px;
    top: 10px;
    right: 10px;
    background-color: #6d1f1fd8;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    color: white; /* Texte en blanc */
    font-weight: bold; /* Texte en gras */
}


.title-container h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}


form {
    margin-bottom: 20px; /* Espacement entre les formulaires */
}

label {
    margin-right: 10px;
}

textarea {
    min-height: 200px;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #000000;
    border-radius: 2px;
}


select, btn_special, input[type="text"], input[type="submit"], input[type="button"], input[type="email"], input[type="password"], textarea {
    padding: 5px;
    font-size: 14px;
    border: 1px solid #000000;
    border-radius: 2px;
}


.btn {
    flex-shrink: 0;
    padding: 5px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #000000;
    background-color: #ffffff;
    color:rgb(0, 0, 0);
    cursor: pointer;

}

/* Ajoutez cette règle CSS pour les icônes */
.btn i {
    color: #333; /* Couleur des icônes */
}

.btn:hover {
    background-color: #d6d6d6;
}


.btn_selected {
    background-color: #909eab; /* Couleur de fond au survol de la souris */
}

.btn_special {
    background-color: #922c2c; /* Couleur de fond au survol de la souris */
    color:rgb(255, 255, 255);
    cursor: pointer;
}

.btn_special:hover {
    background-color: #914f4f; /* Couleur de fond au survol de la souris */
    color:rgb(255, 255, 255);
}

#data-table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
    margin-top: 20px; /* Espacement du tableau par rapport au contenu précédent */
    text-align: left;
}

#data-table-editable {
    table-layout: auto;
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
    margin-top: 20px; /* Espacement du tableau par rapport au contenu précédent */
    text-align: left;
    white-space: nowrap;
}

th, td {
    border: 1px solid #1f17178a;
    padding: 3px;
    position: relative;
    overflow-wrap: break-word; /* Permet le retour à la ligne tout en cassant le texte entre les mots */
    word-wrap: break-word;
    max-width: 100%; /* Empêche la cellule de s'étendre au-delà de sa largeur */
}

th {
    background-color: #959595;
    color: #333;
}

tr:nth-child(even) {
    background-color: #f2f2f2c7; /* Fond gris clair pour les lignes paires */
}

tr:nth-child(odd) {
    background-color: #ddddddc0; /* Fond lignes impaires */
}

tr-fx:hover {
    background-color: #c9c9c9; /* Fond gris un peu plus foncé au survol */
}

.hover-fx {
    transition: background-color 0.6s ease-in-out, color 0.6s ease-in-out, box-shadow 0.6s ease-in-out, transform 0.6s ease-in-out, opacity 0.6s ease-in-out; /* Ajout d'une transition fluide pour les effets */

    /* Styles de base */
    background-color: #c9c9c9; /* Couleur de fond par défaut */
    color: #4d4d4d; /* Couleur de texte par défaut */
    opacity: 1; /* Opacité initiale */
    box-shadow: none; /* Pas d'ombre par défaut */
    transform: scale(1); /* Pas de mise à l'échelle par défaut */
}

.hover-fx:hover {
    background-color: #f5f2f2; /* Fond gris un peu plus foncé au survol */
    color: #000000; /* Changement de couleur de texte */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Ajout d'une légère ombre */
    transform: scale(1.02); /* Légère mise à l'échelle de l'élément */
    opacity: 1; /* Supprime l'opacité au survol */
    z-index: 12; /* Met cet élément encore plus au-dessus lorsqu'il est survolé */
}


.td-text {
    width: 100%;
    padding: 30px;
    vertical-align: middle;
    border-radius: 8px;
    text-align: justify;
}

a.download-link {
    color: inherit; /* Keeps the original color */
    text-decoration: none; /* Removes underline */
    padding: 2px;
}

a.download-link:hover {
    color: #000000; /* Change this to the color you want on hover */
    background-color: #f5f2f2; /* Fond gris un peu plus foncé au survol */
    padding: 2px;
}



tr.tr_list {
    transition: background-color 0.1s ease-in, color 0.1s ease-in, box-shadow 0.1s ease-in, transform 0.1s ease-in;
}

tr.tr_list:hover {
    background-color: #173b49; /* Blanc avec transparence à 90% */
    color: #ffffff;
    transition: background-color 0.1s ease-in, color 0.1s ease-in, box-shadow 0.1s ease-in, transform 0.1s ease-in; /* Transition rapide et réactive */
    z-index: 12; /* Met cet élément encore plus au-dessus lorsqu'il est survolé */
}

.tr_list.purchased {
    background-color: #f0fdf0; /* Vert pâle */
    font-style: italic;
}


td.content:hover {
    background-color: #f2f2f2c7; /* Blanc avec transparence à 90% */
    cursor: pointer;
}

td.editable {
    position: relative;
    cursor: pointer;
    overflow-wrap: break-word; 
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
    height: 100%;
}

td.editable:hover {
    background-color: #ffffff; /* Remplacez cette couleur par celle que vous souhaitez utiliser */
}

td.editable input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    font-size: inherit;
    box-sizing: border-box;
    overflow-wrap: break-word; 
    word-wrap: break-word;
    max-width: 100%;
    z-index: 1;
}

.highlight {
    color: #561b1b;
    font-weight: bold;
}

.edit-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 5px;
    z-index: 2; /* Augmente la priorité de la superposition */
}

.edit-overlay input {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}



td.editable textarea {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100px;
    border: 1px solid #000000;
    border-radius: 2px;
    outline: none;
    resize: vertical; /* Permettre le redimensionnement vertical de la textarea */
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    overflow: auto; /* Permettre le défilement si le contenu dépasse */
    z-index: 1000;
    overflow-wrap: break-word; /* Permet le retour à la ligne tout en cassant le texte entre les mots */
    word-wrap: break-word;
}

/* Admin Tools page */

.admin_tools {
    margin: 10px auto;
    padding: 10px;
    width: 90%;
    border: 1px solid #000000; /* Bordure */
    border-radius: 8px;
    background-color: #e4e4e4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;

}

.admin_tools:hover {
    background-color: #f0f0f0;
}

.admin_tools b {
    font-size: 1.2em;
    color: #000000;
    margin-right: 10px;
}

.admin_tools a {
    display: inline-block;
    color: #000000;
    background-color: #c8c8c8;
    text-decoration: none;
    margin: 0 5px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.admin_tools a:hover {
    background-color: #b0b0b0;
}


/* Login */
.login_input {
    width: 50%;
    height: 30px;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.login_input:focus {
    border-color: #747474;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

/* Bouton de connexion */
.login_btn {
    width: 50%;
    height: 30px;
    padding: 10px;
    background: #999999;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.login_btn:hover {
    background: #5f5f5f;
}



/* Analyser */
  
canvas { 
    min-width: 100%;
    height: 100%;
    position: fixed;
    border-radius: 8px;
    color: #333;
    text-align: left;
    z-index: 299;
  }

.canvas-classe-1 {
    min-width: 500px;
    height: 10%;
    position: fixed;
    bottom: 100px;
    left: 100px;
    transform: translateX(0%);
    border-radius: 8px;
    color: #333;
    width: 30%;
    text-align: left;
    z-index: 299;
}

.canvas-classe-2 {
    min-width: 500px;
    height: 20%;
    position: fixed;
    bottom: 20px;
    left: 26%;
    transform: translateX(-50%);
    border-radius: 8px;
    color: #333;
    width: 50%;
    text-align: center;
    z-index: 299;
}


.canvas-classe-3 {
    min-width: 100%;
    height: 100%;
    position: fixed;
    transform: translateX(-50%);
    border-radius: 8px;
    color: #333;
    text-align: center;
    z-index: 1;
}

.canvas-classe-4 {
    min-width: 100%;
    height: 100%;
    position: fixed;
    transform: translateX(-50%);
    border-radius: 8px;
    color: #333;
    text-align: center;
    z-index: 4;
}

.track_title_class4 {
    font-size: 16px;
    position: fixed;
    color: rgb(255, 255, 255);
    background-color: #3c4a66;
    padding: 10px;
    border: 2px solid #000000;
    border-radius: 5px;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%); /* Centre l'élément par rapport à son point central */
    bottom: 110px;
    font-weight: normal;
}


  .info {
    display: none;
    float: right;
    margin: 15px 20px 0;
  }



.player_modale {
    position: relative;
    width: 100%;
    bottom: 20;
    height: 40px; /* Hauteur légèrement augmentée */
    border-radius: 5px; /* Coins arrondis */
    background-color: #f0f0f0;
}

.player_modale::-webkit-media-controls-panel {
    background-color: #616a74; /* Fond plus foncé pour les contrôles audio */
}

.player_modale::-webkit-media-controls-timeline {
    background-color: #616a74; /* Barre de progression plus foncée */
}

.player_modale::-webkit-media-controls-timeline,
.player_modale::-webkit-media-controls-current-time-display,
.player_modale::-webkit-media-controls-time-remaining-display {
    color: #fff; /* Texte blanc pour les contrôles audio */
}

#search-input {
    width: 100px; /* ajuste la largeur de la barre de recherche */
    padding: 5px;
    font-size: 14px;
    height: 10px;
}

.popup {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.edit-input-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 5px;
    border: none;
    background: white;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
}

#contact_form {
    width: 66%;
    margin: 0 auto;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form_group {
    margin-bottom: 10px;
}


.form_group input[type="text"],
.form_group input[type="email"],
.form_group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form_group textarea {
    height: 100px;
}

.form_group button[type="submit"] {
    padding: 10px 20px;
    background-color: #666666;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.form_group button[type="submit"]:hover {
    background-color: #45a049;
}

.form_table {
    width: 66%;
    font-size: 14px;
    border-collapse: collapse;
    margin: 20px auto; /* Centre la table horizontalement et ajoute un espace au-dessus */
}


.film_restricted {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.384); /* Film gris semi-transparent */
    z-index: 10; /* Empêcher le contenu de la page d'être cliqué */
    border-radius: 8px;
}

.message_restricted {
    position: fixed;
    top: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 11; /* Assurer que le message apparaît au-dessus de tout */
}

.gigs_display {
    position: relative; /* Assurez-vous que l'élément parent a une position définie */
    border-radius: 8px;
    color: #333;
    border: 1px solid #000000;
    box-shadow: 0 0 10px rgba(90, 90, 90, 0.534);
    background-color: rgba(182, 174, 174, 0.883);
    max-width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    transition: 
        background-color 0.4s ease-in-out, 
        color 0.4s ease-in-out,
        text-shadow 0.4s ease-in-out,
        box-shadow 0.4s ease-in-out, 
        transform 0.4s ease-in-out, 
        border 0.4s ease-in-out;    
    z-index: 1; /* Pour s'assurer que le texte est au-dessus de l'image de fond */
}

.gigs_display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7; /* Opacité initiale de l'image de fond */
    transition: opacity 0.4s ease-in-out;
    z-index: -1; /* Place le pseudo-élément derrière le contenu */
    border-radius: 8px; /* Assure que le pseudo-élément suit la bordure arrondie */
}

.gigs_display.has-image::before {
    background-image: var(--bg-image); /* Utilise la variable CSS pour l'image de fond */
}

.gigs_display:hover::before {
    opacity: 1; /* Opacité de l'image de fond au survol */
}

.gigs_display:hover {
    background-color: #d5d5d5;
    color: #ffffff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.76);
    transform: scale(1.03);
    z-index: 12;
}

.gigs_display.has-image {
    color: #ffffff;
}

.gigs_display.has-image:hover {
    background-color: #9a9a9a;
    color: #ffffff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.76);
    transform: scale(1.03);
    z-index: 12;
}

.gigs_left_link {
    text-decoration: none;
    width: 60%;
    color: inherit; /* Garde la couleur du texte */
    display: block; /* Assure que le lien englobe tout le cadre */
}

.gigs_left_link:hover .gigs_left {
    background-color: #8f8787; /* Exemple d'effet de survol */
}


.gigs_left {
    text-align: left;
    background-color: #ffffffb1;
    color: #000000;
    padding: 10px;
    border-radius: 5px;
    transition: 
        background-color 0.4s ease-in-out, 
        color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out, 
        transform 0.2s ease-in-out, 
        border 0.2s ease-in-out;    
}

.gigs_left:hover {
    text-align: left;
    background-color: #ffffffd8;
    color: #000000;

}

.gigs_center {
    text-align: left;
    padding: 10px;
    border-radius: 5px;
    width: 30%;
    transition: 
        background-color 0.4s ease-in-out, 
        color 0.2s ease-in-out,
        text-shadow 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out, 
        transform 0.2s ease-in-out, 
        border 0.2s ease-in-out;  
}

.gigs_center:hover {
    text-align: left;
    background-color: #ffffffd8;
    color: #000000;
    text-shadow: 0px 0px 0px rgb(0, 0, 0);

}

.gigs_right {
    text-align: right;
    width: 10%;
    text-shadow: 0px 0px 0px rgb(0, 0, 0);

}

.gigs_link {
    text-align: left;
    color: #000000; /* Exemple de couleur rouge */
    background-color: #ffffffa0;
    padding: 5px;
    border-radius: 3px;
    text-decoration: none; /* Supprime la soulignement par défaut */
    font-weight: bold; /* Rend le texte en gras */
    transition: color 0.4s ease-in-out, text-shadow 0.4s ease-in-out; /* Transition douce pour les effets */
}

.gigs_link:hover {
    color: #ffffff; /* Change la couleur au survol */
    background-color: #a4a4a4;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5); /* Ajoute une ombre au texte au survol */
    font-weight: bold;
}

.styleSelector .row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.styleSelector .cell {
    cursor: pointer;
    padding: 5px;
    border: 1px solid #585858;
    border-radius: 5px;
}

.styleSelector .cell.selected {
    background-color: #e0e0e0;
}

   /* CSS pour aligner le formulaire */
   #styleTable {
    text-align: center; /* Alignement du contenu au centre */
}

.row.styleSelector {
    margin-bottom: 10px; /* Espacement entre les lignes */
}

.cell {
    display: inline-block; /* Alignement horizontal des cellules */
    margin: 3px; /* Espacement autour des cellules */
    padding: 5px 5px; /* Espacement intérieur des cellules */
    border: 1px solid #e73a3a; /* Bordure pour séparer les cellules */
    cursor: pointer; /* Curseur pointer pour indiquer qu'il s'agit d'un élément cliquable */
}

.cell-selected {
    cursor: pointer;
    padding: 5px;
    border: 1px solid #585858;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.cell:hover {
    background-color: #f0f0f0; /* Changement de couleur de fond lors du survol */
}


/* Style pour la modal */
.modal {
    display: none; /* Par défaut, la modal est masquée */
    position: fixed; /* Position fixe pour qu'elle reste au-dessus du contenu */
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 20;
    background-color: #00000088;
    color: #000000;
    padding: 20px;
    box-sizing: border-box; /* Pour inclure le padding et la bordure dans la taille totale */
    transform: translate(-50%, -50%); /* Centre la modal */
}


.modal-content {
    background-color: #fff;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
    width: 85%;
    z-index: 21;
}

.modal-video {
    background-color: #fff;
    color: #000;
    margin: 10% auto; /* Center the modal vertically and horizontally */
    padding: 20px;
    border-radius: 8px;
    width: 85%; /* Width of the modal */
    max-width: 700px; /* Maximum width of the modal */
    position: relative; /* Needed for positioning the close button */
  }

.modal-picture {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: auto; /* Utiliser la largeur automatique pour maintenir le ratio aspect */
    max-width: 80%; /* Limiter la largeur maximale de l'image à 80% de la largeur de la fenêtre */
    max-height: 70vh; /* Limiter la hauteur maximale de l'image à 80% de la hauteur de la fenêtre */
    z-index: 21;
}

.modal_restricted {
    display: none; /* Par défaut, la modal est masquée */
    border: 10px solid #000000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25%;
    height: 25%;
    z-index: 20;
    background-color: #fff;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
}


.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 5000;

}

.close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.modal .prev, .modal .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
    user-select: none;
    -webkit-user-select: none;
}

.modal .prev {
    left: 0;
}

.modal .next {
    right: 0;
}

.modal .prev:hover, .modal .next:hover {
    background-color: rgba(0,0,0,0.8);
}


* Style pour les cases à cocher */
.styled-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #ccc;
    border-radius: 5px;
    width: 200px;
    cursor: pointer;
    outline: none;
    vertical-align: middle;
    position: relative;
    top: 2px;
    margin-right: 10px;  /* Ajout d'une marge pour séparer la case à cocher du texte */
}

.styled-checkbox:checked {
    background-color: #007BFF;
    border-color: #007BFF;
}

/* Style pour le survol */
.styled-checkbox:hover {
    border-color: #0056b3;
}

/* Style pour le label associé */
.styled-checkbox-label {
    display: inline-block;
    margin-right: 20px;  /* Ajustement de la marge pour mieux aligner le texte */
    cursor: pointer;
}

.styled-checkbox-label:hover {
    color: #0056b3;
}
  
  
/*back to top */
.back-to-top-btn {
    position:fixed;
    right: 20px;
    bottom: 110px;
    background-color: #b6b6b648;
    color: rgb(0, 0, 0);
    border: 1px solid #000000;
    border-radius: 50%;
    width: 30px; /* Taille du bouton */
    height: 30px; /* Taille du bouton */
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    z-index: 20;
}

.back-to-top-btn:hover {
    transform: scale(1.1); /* Zoom léger au survol */
}

.scroll-to-track-btn {
    position: fixed;
    right: 20px;
    bottom: 150px; /* Décale ce bouton au-dessus du "Back to Top" */
    background-color: #b6b6b648;
    color: rgb(0, 0, 0);
    border: 1px solid #000000;
    border-radius: 50%;
    width: 30px; /* Taille du bouton */
    height: 30px; /* Taille du bouton */
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    z-index: 20;
}

.scroll-to-track-btn:hover {
    transform: scale(1.1); /* Zoom léger au survol */
}

.track-buy-btn {
    position: fixed;
    right: 120px;
    bottom: 80px; /* Décale ce bouton au-dessus du "Back to Top" */
    background-color: #b6b6b648;
    color: rgb(0, 0, 0);
    border: 1px solid #000000;
    border-radius: 50%;
    width: 80px; /* Taille du bouton */
    height: 80px; /* Taille du bouton */
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    z-index: 500;
}

.track-buy-btn:hover {
    transform: scale(1.1); /* Zoom léger au survol */
}


.form-container {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    position: relative;
    border-radius: 8px;
    color: #000000;
}

.form-group {
    flex: 1;
    margin-right: 10px;
    z-index: 500;
}

.playlist_container {
    width: 100%;
    margin-top: 30px; /* Déplacer le conteneur vers le bas de 30 pixels */
}


.playlist {
    list-style: none;
    padding: 0;
    font-size: 14px;
}

.playlist li {
    margin-bottom: 3px;
    border: 1px solid rgba(0, 0, 0, 0.56);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.playlist li:hover {
    background-color: #839cb0;
}

.playlist li a {
    display: block;
    padding: 5px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    background-color: #e6e6e679;
    transition: background-color 0.3s ease;
    margin-right: 30px;

}

.playlist li a:last-child {
    margin-right: 0; /* Remove margin from the last link */
}

.playlist li a:hover {
    background-color: #526c81;
    color: #c6c6c6; 
}

.playlist li a.current-track {
    color: #c6c6c6; 
    background-color: #251a4f;
}

.tracklist {
    list-style: none;
    padding: 0;
}

.tracklist li {
    margin-bottom: 2px;
    text-align: left;
    font-size: 14px;
}

.tracklist li a {
    display: block;
    padding: 5px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    background-color: #e6e6e6;
    transition: background-color 0.3s ease;
}

.tracklist li a:hover {
    background-color: #d4d4d4;
}

.tracklist li a.current-track {
    color: #c6c6c6; /* Change the color to your desired color */
    background-color: #133143;
}

.tracks-filters {
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    border-radius: 8px;
    color: #000000;
}

.tracks-filters-group {
    flex: 1;
    margin-right: 10px;
    z-index: 500;
}

.extra-options td {
    background-color: #ffffff; /* Fond blanc */
    padding: 15px; /* Espacement interne */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Ombrage subtil */
    border: 1px solid #ccc; /* Bordure grise légère */
    color: #333; /* Couleur du texte */
  }
  
  .extra-options {
    display: table-row; /* Assure le comportement de ligne de tableau */
  }

  .extra-buttons {
    display: flex;
    gap: 10px; /* Espacement entre les boutons */
    flex-wrap: wrap; /* Les boutons passent à la ligne s'ils ne tiennent pas */
    margin-bottom: 10px;
}

.admin-options-button {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    text-align: center;
    text-decoration: none; /* Retire le soulignement si c'est un lien */
}

.admin-options-button:hover {
    background-color: #f0f0f0; /* Couleur au survol */
}
  
  

/* Ajuster la grille pour afficher plus d'images par colonne */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Colonnes flexibles avec une largeur minimale de 150px */
    gap: 10px; /* Espacement entre les images */
}

.img-preview {
    position: relative; /* Position relative pour le positionnement des contenus internes */
    overflow: hidden; /* Cacher le débordement de contenu */
    border-radius: 10px; /* Coins arrondis */
    object-fit: cover;
    width: 100%;
    display: flex; /* Utiliser le modèle de boîte flex pour aligner les éléments */
    align-items: center; /* Centrer verticalement les éléments */
    justify-content: center; /* Centrer horizontalement les éléments */
}


.img-preview img {
    width: 100%; /* Largeur de l'image à 100% du conteneur */
    height: 100%; /* Hauteur de l'image à 100% du conteneur */
    display: block; /* Empêcher les marges blanches sous les images en tant qu'éléments en ligne */
    object-fit: cover; /* Redimensionner l'image tout en conservant son ratio d'aspect, en coupant le surplus */
    transition: transform 0.3s ease; /* Animation de transition */
    margin-right: 10px; /* Espacement entre les images */
}


/* Définir différentes tailles pour les images */
.img-preview.large {
    grid-column: span 2; /* Occupera 2 colonnes */
    grid-row: span 2; /* Occupera 2 lignes */
    width: 100%;
}

.img-preview.medium {
    grid-column: span 1; /* Occupera 1 colonne */
    grid-row: span 1; /* Occupera 1 ligne */
    width: 100%;
}

.img-preview.small {
    grid-column: span 1; /* Occupera 1 colonne */
    grid-row: span 1; /* Occupera 1 ligne */
    width: 100%;
}

.img-preview.xsmall {
    grid-column: span 1; /* Occupera 1 colonne */
    grid-row: span 1; /* Occupera 1 ligne */
    width: 100%; /* Largeur de l'image à 100% du conteneur */
    height: auto; /* Ajuster automatiquement la hauteur en fonction de la largeur */
}

.img-preview img:hover {
    transform: scale(1.30); /* Zoom au survol */
    filter: brightness(0.8); /* Réduire la luminosité au survol */
    cursor: pointer;
}

.img_banner {
    border: 3px solid black;
    border-radius: 12px;
    overflow: hidden;
    max-width: 100%;
}

.img_banner img {
    width: 100%;
    border-radius: 8px;
    opacity: 0.8;
    margin: 0;
    display: block;
    filter: brightness(1);
    transition: transform 0.9s, filter 0.9s, opacity 0.9s ease;
}

.img_banner:hover img {
    transform: scale(1.10);
    filter: brightness(1.1);
    opacity: 1;
}

.img_normal {
    border: 1px solid black;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 100%; /* Assure une hauteur pleine */
    display: flex; /* Évite les marges en haut et en bas */
    justify-content: center;
    align-items: center;
}

.img_normal img {
    width: 100%;
    height: 100%; /* Étend l'image à toute la hauteur */
    object-fit: cover; /* Remplit le cadre */
    border-radius: 8px;
    margin: 0;
    display: block;
    transition: transform 0.9s, filter 0.9s, opacity 0.9s ease;
}

.img_normal:hover img {
    transform: scale(1.10);
    filter: brightness(1.2);
    opacity: 0.9;
}


.zoomable {
    transition: transform 0.3s ease-in-out; /* Ajoute une transition fluide */
}

.zoomable:hover {
    transform: scale(1.2); /* Applique un zoom de 120% lors du survol */
}


.footer {
    position: fixed;
    font-size: 11px;
    background-color: #ffffff;
    color: rgb(116, 116, 116);
    right: 10px;
    bottom: 10px;
}

.gateways-table-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #000000;
}

.gateways-table {
    width: 100%;
    border-collapse: collapse;
}

.gateways-table th, .gateways-table td {
    padding: 8px;
}

.gateways-section {
    background-color: #767676; /* Couleur de fond pour les titres de section */
    font-weight: bold;
    color: #ffffff; /* Couleur du texte pour les titres de section */
    padding: 10px;
    text-align: center;
}

.gateways-body .gateways-row {
    background-color: #ffffff; /* Couleur de fond pour les lignes de données */
}

.gateways-body .gateways-row:hover {
    background-color: #f1f1f1; /* Couleur de fond au survol pour les lignes de données */
}

.gateways-body td {
    padding: 8px;
    text-align: left;
}

.gateways-section-name, .gateways-name, .gateways-description, .gateways-link {
    padding: 8px;
}

.gateways-link a {
    color: blue;
    text-decoration: none;
}

.gateways-link a:hover {
    text-decoration: underline;
}


/* Style pour le menu db edit */
/* Style pour le conteneur flex */
.toolbar {
    display: flex;
    align-items: center;
    gap: 10px; /* Espace entre les éléments */
    margin-top: 20px; /* Espace sous la barre d'outils */
    border: 1px solid #000000; /* Bordure pour le champ de recherche */

}

/* Style pour les boutons */
.toolbar .btn {
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    background-color: #6c757d; /* Couleur de fond gris */
    color: white; /* Couleur du texte */
    border: none; /* Pas de bordure */
    border-radius: 4px; /* Coins arrondis */
    text-decoration: none; /* Enlever la décoration de lien pour les <a> */
    display: inline-block;
    text-align: center;
    margin-right: 5px; /* Espacement entre les boutons */
}

/* Style pour le formulaire de recherche */
.toolbar #search-form {
    display: flex;
    align-items: center;
    gap: 5px; /* Espace entre les éléments du formulaire */
}

/* Appliquer le style des boutons au champ de recherche */
.toolbar .search-input {
    font-size: 12px;
    border: 1px solid #6c757d; /* Bordure pour le champ de recherche */
    border-radius: 4px; /* Coins arrondis */
    height: 40px; /* Hauteur égale aux boutons pour un alignement parfait */
    box-sizing: border-box; /* Assurez-vous que le padding est inclus dans la hauteur */
    width: 300px; /* Largeur du champ de recherche */
    align-items: center;
}

/* Assurer que tous les boutons dans le formulaire de recherche aient le même style */
.toolbar #search-form .btn {
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    background-color: #6c757d; /* Couleur de fond gris */
    color: white; /* Couleur du texte */
    border: none; /* Pas de bordure */
    border-radius: 4px; /* Coins arrondis */
    text-decoration: none; /* Enlever la décoration de lien pour les <a> */
    display: inline-block;
    text-align: center;
    align-items: center;
}

/* Effet de survol pour tous les boutons */
.toolbar .btn:hover, .toolbar #search-form .btn:hover {
    background-color: #5a6268; /* Couleur de fond gris plus foncé */
}

/* Alignement vertical des éléments du formulaire */
#search-form input[type="text"], #search-form button {
    height: 36px; /* Hauteur égale aux boutons pour un alignement parfait */
}

/* Style pour le bouton sélectionné */
.toolbar .btn.selected {
    background-color: #2f353a; /* Couleur légèrement différente pour le bouton sélectionné */
}


/* Style pour le formulaire de modification spécifique à db_edit */
.db-edit-form {
    max-width: 900px;
    margin: 0 auto; /* Centrer le formulaire */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style pour les rangées du formulaire spécifique à db_edit */
.db-edit-form-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Style pour les labels spécifique à db_edit */
.db-edit-form-row label {
    width: 200px; /* Largeur fixe pour les labels */
    font-weight: bold;
    margin-right: 10px;
    text-align: right; /* Aligner le texte à droite */
}

/* Style pour les contrôles de formulaire spécifique à db_edit */
.db-edit-form-control {
    flex: 1; /* Prendre tout l'espace disponible */
    padding: 8px;
    font-size: 16px;
    width: 400px; /* Largeur fixe pour les contrôles */
    max-width: 100%; /* Ne pas dépasser la largeur du conteneur */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Inclure le padding et la bordure dans la largeur */
}

/* Style pour le textarea spécifique à db_edit */
.db-edit-form-control textarea {
    resize: vertical; /* Permettre le redimensionnement vertical uniquement */
    height: 100px; /* Hauteur fixe pour les textareas */
}

/* Style pour le bouton de soumission spécifique à db_edit */
.db-edit-btn-submit {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.db-edit-btn-submit:hover {
    background-color: #0056b3;
}

.music_sets_player {
    min-width: 800px;
    width: 66%;
    height: 33px;
    position: fixed;
    top: 65px;
    left: 17%;
    transform: translateX(0%);
    padding: 10px;
    border-radius: 8px;
    color: #333; /* Texte noir pour contraste */
    box-shadow: 0 0 10px rgba(83, 58, 58, 0.534); /* Légère ombre pour le contenu principal */
    background-color: rgba(182, 174, 174, 0.883); /* Blanc avec transparence à 90% */
    text-align: center; /* Align the text in the center */
    z-index: 10; /* Pour placer le menu au-dessus des autres éléments */
}

.music_sets_waveform {
    position: fixed;
    left: 80px;
    top: 7px;
    width: 85%;
    height: 30px;
}

.music_sets_playbtn {
    position:fixed;
    left: 20px;
    bottom: 5px;
    background-color: #bbbbbbc0;
    color: rgb(0, 0, 0);
    border: 1px solid #000000;
    border-radius: 50%;
    width: 40px; /* Taille du bouton */
    height: 40px; /* Taille du bouton */
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    z-index: 20;
}

.music_sets_playbtn:hover {
    transform: scale(1.1); /* Zoom léger au survol */
}

.music_sets_time {
    position: fixed;
    right: 30px;
    bottom: 7px;
    z-index: 100;
}

/* Style pour l'écran de chargement */
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Toujours au-dessus */
}

/* Spinner de chargement */
.load-spinner {
    border: 6px solid rgba(255, 255, 255, 0.3); /* Bord extérieur translucide */
    border-top: 6px solid #fff; /* Bord supérieur opaque */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Animation de rotation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


a.album-btn {
    font-size: 1.2em;
    color: #1a0dab;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #1a0dab;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-bottom: 10px;
  }
  a.album-btn:hover {
    background-color: #1a0dab;
    color: #fff;
  }
