/* latin-ext */
@font-face {
  font-family: 'Coda';
  font-style: normal;
  font-weight: 400;
  src: local('Coda Regular'), local('Coda-Regular'), url(../fonts/SLXHc1jY5nQ8FUsGa6aN.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Coda';
  font-style: normal;
  font-weight: 400;
  src: local('Coda Regular'), local('Coda-Regular'), url(../fonts/SLXHc1jY5nQ8FUUGaw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* CSS for Header Section */
.header {
    background-color: #ffffff; /* White background color */
    color: #ffffff; /* White text color */
    padding: 25px 20px; /* Padding for header content */
    text-align: center; /* Center align text */
}

.header h1 {
    font-size: 24px; /* Font size for header text */
    font-weight: bold; /* Bold font weight */
}

.header p {
    font-size: 16px; /* Font size for paragraph text */
}

.header a {
    color: #000000; /* Black link color */
    text-decoration: none; /* Remove underline from links */
    margin: 0 10px; /* Margin between links */
}

.header a:hover {
    color: #009ee3;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.header-container {
  display: flex;
  align-items: center; /* Center items vertically */
}

.navbar-left {
  float: left;
}

.navbar-nav {
  margin-left: 0;
}

.custom-modal-bg {
/*    background-color: #202020; /* Black background color for the rest of the page */
    background-color: #fdfdfd; /* White background color for the rest of the page */
/*    color: #ffffff; /* White text color */
    color: #000000; /* Black text color */
    font-family: 'Coda', cursive, Helvetica, Arial, sans-serif;
    border-radius: 0.3rem; /* Bordure arrondie */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Ombre pour profondeur */
}

.download-icon {
    width: 24px; /* Taille de l'icône */
    height: 24px;
}

.square {
  width: 20px;
  height: 20px;
  background-color: #009ee3; /* Blue color */
}

@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
  }
}

/* CSS for Non-Selected Menu Items */
.selected {
    color: #009ee3; /* Blue color for selected menu items */
    font-weight: bold;
    position: relative;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* CSS for Rest of the Page */
body {
    background-color: #202020; /* Black background color for the rest of the page */
    color: #ffffff; /* White text color */
    font-family: 'Coda', cursive, Helvetica, Arial, sans-serif;
}

a {
    color: #009ee3; /* Blue link color */
    text-decoration: none; /* Remove underline from links */
    margin: 0 10px; /* Margin between links */
}

h1 {
    color:#009ee3;
    margin: 10px;
}

.black-font { color: #FFFFFF; }

