/* Bottom-right square banner */
#cookie-banner.fk-cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 15px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#cookie-banner.fk-cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/* Button container */
.fk-cookie-buttons {
  display: flex;
  flex-wrap: wrap;
}

/* Buttons */
.fk-cookie-buttons button {
  flex: 1 1 auto;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}

/* Modal overlay */
#cookie-settings-modal.fk-cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* Modal card content */
#cookie-settings-modal .fk-cookie-modal-content {
  background: #fff;
  padding: 20px;
  max-width: 400px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Modal labels */
#cookie-settings-modal label {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 8px;
}

/* Modal buttons row */
#cookie-settings-modal .fk-cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Modal buttons */
#cookie-settings-modal .fk-cookie-buttons button {
  padding: 6px 12px;
  font-size: 13px;
}

