/* Dark overlay */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

/* Cookie Consent Popup Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #464c9d;
    color: white;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    max-width: 800px;
    margin: 0 auto;
    padding: auto;
  }
  
  .cookie-text {
    font-size: 14px;
    margin-bottom: 10px;
    color: white;
  }
  
  .cookie-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    color: #464c9d;
    background-color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cookie-btn:hover {
    background-color: #ddd;
  }
  
  @media (max-width: 600px) {
    .cookie-text {
      font-size: 12px;
    }
    .cookie-btn {
      font-size: 12px;
      padding: 8px 15px;
    }
  }
  