/* Main container styling */
.cookie-consent-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.cookie-consent-title {
  font-size: 50px;
  line-height: 55px;
  color: #6AABD2;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 27px;
  position: relative;
  padding-bottom: 8px;
  text-align: center;
}

.cookie-consent-description {
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  color: #033757;
}

/* Global action buttons */
.cookie-global-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.btn-cookie-accept-all {
  background-color: #6AABD2;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-cookie-accept-all:hover {
  background-color: #033757;
  text-decoration: none;
  color: white;
}

/* Cookie group styling */
.cookie-group {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #6AABD2;
}

.cookie-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cookie-group-name {
  font-size: 18px;
  font-weight: bold;
  color: #033757;
}

.cookie-group-controls {
  display: flex;
  align-items: center;
}

.cookie-group-description {
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Cookie list styling */
.cookies-list {
  margin-top: 15px;
  border-top: 1px solid #6AABD2;
  padding-top: 10px;
}

.cookie-item {
  border-top: 1px solid #eee;
  padding: 12px 0;
}

.cookie-name {
  font-weight: 600;
  display: flex;
  align-items: center;
  color: #033757;
}

.cookie-domain {
  font-size: 0.9em;
  color: #666;
  margin-left: 5px;
}

.cookie-description {
  margin-top: 5px;
  font-size: 0.9em;
  color: #555;
}

/* Toggle switch styling */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-right: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #6AABD2;
}

input:focus + .slider {
  box-shadow: 0 0 1px #033757;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.status-label {
  margin-left: 10px;
  font-size: 0.8em;
}

/* Status indicators */
.status-accepted {
  color: #6AABD2;
  font-weight: bold;
}

.status-declined {
  color: #033757;
  font-weight: bold;
}

/* Control layout fix */
.accept-control, .decline-control {
  display: inline-block;
  margin-right: 10px;
}

/* Radio button style (to show only one choice) */
.cookie-option-selector {
  display: flex;
  align-items: center;
}

.option-label {
  margin-left: 5px;
  font-size: 14px;
}

/* Footer with Save button */
.cookie-consent-footer {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.btn-cookie-save {
  background-color: #033757;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-cookie-save:hover {
  background-color: #6AABD2;
  text-decoration: none;
  color: white;
}

/* For inline form display */
.cookie-form-inline {
  display: inline;
}

/* For hidden forms */
.hidden-form {
  display: none;
}