/* Global CSS */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    background-color: #333;
    color: white;
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Logo/Title on the left */
.header .site-name .bouton {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    margin-left: 20px;
}

.header .youtube .bouton {
    background-color: #b14e4e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 20px;
}

/* User Button on the right */
.header .user-button .bouton {
    background-color: #555;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 20px;
}

.header .user-button .bouton:hover .youtube {
    background-color: #777;
}

.spotify {
    color: white;
    display: flex;
    align-items: center;
}

.spotify_text {
    margin-right: 5px;
}

/* Add padding-top to body to prevent content overlapping the fixed header */
body {
    padding-top: 60px; /* Adjust based on header height */
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 1000px;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover {
    color: black;
}

.bouton-lien {
  background-color: #e9e9ed;
  border: 0.2px solid #8f8f9d;
  border-radius: 5px;
  padding: 3px;
  color: black;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: small;
  text-align: center;
  text-decoration: none;
  cursor: default;
}