.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f1f1f1;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#cookie-accept {
  background-color: #4CAF50;
  color: white;
}
#cookie-reject {
  background-color: #f44336;
  color: white;
}
#cookie-settings {
  background-color: #2196F3;
  color: white;
}
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1010;
  padding: 20px;
}
.cookie-settings-content {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}
.cookie-settings-header h3 {
  margin: 0;
  font-size: 1.25rem;
}
.cookie-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.cookie-settings-body {
  padding: 20px;
}
.cookie-categories {
  margin-top: 15px;
}
.cookie-category {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.cookie-category-header label {
  display: flex;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
}
.cookie-category-header input {
  margin-right: 10px;
}
.required-label {
  font-size: 0.8rem;
  color: #777;
  margin-left: 8px;
}
.cookie-category-desc {
  font-size: 0.9rem;
  color: #555;
}
.cookie-settings-footer {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  text-align: right;
}
.cookie-settings-footer button {
  padding: 8px 20px;
  background-color: #2196F3;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.cookie-settings-footer button:hover {
  background-color: #0b7dda;
}
body.cookie-settings-open {
  overflow: hidden;
}