/* Cookie Consent Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 15px 20px;
  z-index: 9999;
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
  margin-right: 20px;
  min-width: 200px;
}

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

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cookie-accept {
  background-color: #4caf50;
  color: white;
}

.cookie-accept:hover {
  background-color: #45a049;
}

.cookie-customize {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.cookie-customize:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-save {
  background-color: #2196f3;
  color: white;
}

.cookie-save:hover {
  background-color: #0b7dda;
}

.cookie-settings {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings-content {
  max-width: 800px;
  margin: 0 auto;
}

.cookie-setting-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-setting-item:last-child {
  border-bottom: none;
}

.cookie-setting-item label {
  font-weight: 600;
  margin-left: 8px;
  cursor: pointer;
}

.cookie-description {
  margin-top: 5px;
  margin-left: 25px;
  font-size: 12px;
  color: #ccc;
}

.cookie-settings-buttons {
  margin-top: 20px;
  text-align: right;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-text {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }
}
