
.alert-success{
    background-color: #7acc7d;
    border: #2b5a2d 1px solid;
    padding: 5px 9px;
    color: #262b26;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
}


@media only screen and (max-width: 760px),
(min-device-width: 802px) and (max-device-width: 1020px) {

    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
        
    }
    .empty {
        display: none;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    th {
        position: absolute;
        top: -9999px;
        left: -9999px;
        
                
    }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 0;  
        text-align:center;        
    }
        



}

/* Smartphones (portrait and landscape) ----------- */

@media only screen and (min-device-width: 150px) and (max-device-width: 240px) {
    body {
        padding: 0;
        margin: 0;
    }
        h2 {
        text-align :center;
        padding: 0;
        margin: 0;  
                
    }  

}

/* iPads (portrait and landscape) ----------- */

@media only screen and (min-device-width: 802px) and (max-device-width: 1020px) {
    body {
        width: 495px;
    }
}

@media (min-width:641px) {

    table {
        
        table-layout: fixed;
    
    }
    td {
                height: 100px;
            width: 100px;
            padding: 10px;
        border: 1px solid grey;
        border-radius: 5px;
            border-style: dotted; 
        //width: 33%;
    }

    tr{

        width: 33%;
    }
}

.row{

    margin-top: 20px;
}

.today{
    background:yellow;
}


    
.dropbtn {
background-color: #04AA6D;
color: white;
padding: 16px;
font-size: 16px;
border: none;

}

.dropdown {

position: relative;
display: inline-block;
}

.dropdown-content {
display: none;
position: relative;
left: 0px;
border: 3px solid white;
text-align:left;
background-color: white;
min-width: 50px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
list-style-type: none;

}

.dropdown-content a {

padding: 12px 16px;
text-decoration: none;
display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content { display: block;}

.dropdown:hover .dropbtn {background-color: #3e8e41;} 

a {
text-decoration: none;
color: black;
}
a:visited {
color: #844;
}
a:hover, a:focus, a:active {
text-decoration: none;
color: white;
text-decoration: underline overline #ff3028;
background: #7CFC00;

}
a:link {color: black; }




.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 100px;
}

.dots div {
  width: 15px;
  height: 15px;
  background-color: #3b82f6;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

.dots div:nth-child(2) {
  animation-delay: 0.2s;
}

.dots div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  to {
    transform: translateY(-15px);
  }
}






* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
}

.menu {
  background-color: #333;
  color: #fff;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.menu .logo {
  font-size: 1.4em;
  font-weight: bold;
  letter-spacing: 1px;
}

.menu-links {
  list-style: none;
  display: none;
  flex-direction: column;
  background-color: #333;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  transition: all 0.3s ease;
}

.menu-links li {
  text-align: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-links a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.menu-links a:hover {
  color: #00bcd4;
}

.menu-toggle {
  display: block;
  font-size: 1.8em;
  cursor: pointer;
}

/* État actif du menu (quand on clique sur le burger) */
.menu.active .menu-links {
  display: flex;
}

/* Version Desktop */
@media (min-width: 768px) {
  .menu {
    flex-direction: row;
  }

  .menu-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 25px;
    background: none;
    margin-left: 50px;
  }

  .menu-links li {
    border: none;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }
  /* Responsive */
@media (max-width: 768px) {
  .menu-links {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
  }

  .menu.active .menu-links {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}