/* Klaro Cookie Consent Styling */

#klaro {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

/* Cookie banner */
#klaro .cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  background: #ffffff;
  color: #333;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  z-index: 9999;
}

/* Buttons container */
#klaro .cn-buttons {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Buttons */
#klaro button {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

/* Accept button */
#klaro .cm-btn-success {
  background: #1e88e5;
  color: white;
}

/* Decline button */
#klaro .cm-btn-danger {
  background: #666;
  color: white;
}

/* Manage button */
#klaro .cm-btn-info {
  background: #eaeaea;
  color: #333;
}

/* Modal background */
#klaro .cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* Modal content */
#klaro .cm-modal {
  background: #fff;
  width: 90%;
  max-width: 600px;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Modal title */
#klaro .cm-header h1 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Services list */
#klaro .cm-services {
  margin-top: 15px;
}

/* Service item */
#klaro .cm-service {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

/* Toggle switch */
#klaro .cm-toggle {
  float: right;
}

/* Footer buttons */
#klaro .cm-footer {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Mobile adjustments */
@media (max-width: 600px) {

  #klaro .cookie-notice {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }

  #klaro .cm-modal {
    width: 95%;
  }

}