.cookie-modal {
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(./images/step-evaluation-process.png);
    background-size: cover;
    color: rgb(255, 255, 255);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    height: auto;
    display: none;
  }
  
  .cookie-content h5 {
    margin-bottom: 10px;
    font-size: 18px;
    color: aliceblue;
  }
  
  .cookie-content p {
    font-size: 10px;
    margin-bottom: 10px;
  }
  
  .privacy-link {
    color: #4caf50;
    text-decoration: underline;
  }
  
  .cookie-settings {
    margin: 10px 0;
    padding: 10px;
    background: #333;
    border-radius: 5px;
  }
  
  .cookie-settings label {
    display: block;
    margin-bottom: 5px;
  }
  
  .cookie-buttons {
    display: flex;
    justify-content: space-between;
  }
  
  .cookie-buttons button {
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
  }
  
  #acceptCookies {
    background: #4caf4f00;
    color: rgb(8, 202, 2);
  }
  
  #saveCookies {
    background: #ff990000;
    color: rgb(250, 215, 15);
  }
  
  #declineCookies {
    background: #ec000000;
    color: rgb(255, 44, 44);
  }

/* Small Round Cookie Button (Always Visible on Left) */
#cookieButton {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #ff9800;
    color: white;
    border: none;
    border-radius: 40%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: block; /* Always visible */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease-in-out;
    z-index: 1000; /* Ensure it stays on top */
  }
  
  /* Hover Effect */
  #cookieButton:hover {
    background: #e68900;
    transform: scale(1.1);
  }