/* Cookie Consent Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.cookie-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.cookie-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  max-width: 800px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #777;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #000;
}

.cookie-options {
  margin: 20px 0;
}

.cookie-option {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.cookie-option:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cookie-option label {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 5px;
  padding-left: 5px;
}

.cookie-option p {
  margin: 5px 0 0 25px;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive styles for cookies */
@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
  }
  
  .cookie-content p {
    margin-right: 30px;
    margin-bottom: 0;
  }
  
  .cookie-buttons {
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .cookie-buttons {
    margin-top: 15px;
  }
  
  .cookie-buttons button {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .cookie-modal-content {
    margin: 10% auto;
    padding: 20px;
    width: 90%;
  }
}
