/* --- Banner & Modal Styles --- */
#cookie-banner, #cookie-settings-modal {
  font-family: Arial, sans-serif;
  z-index: 9999;
  background: #222;
  color: #fff;
}

#cookie-banner a:link, #cookie-banner a:visited{color:#fff; text-decoration:underline;}
#cookie-banner a:hover{text-decoration:underline !important;}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cookie-banner button {
  margin-left: 10px;
  padding: 8px 15px;
  border: none;
  cursor: pointer;
}
#cookie-banner button.accept { background: #fff;     border: 1px solid #fff; }
#cookie-banner button.reject { background: transparent; color:#fff;     border: 1px solid #fff;}
#cookie-banner button.settings { background: transparent; color:#fff;     border: 1px solid #fff;}

#cookie-banner button.reject:hover{ background: #172f45; }
#cookie-banner button.settings:hover{ background: #172f45; }

#cookie-settings-modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
    padding: 30px 60px;
  max-width: 400px;
  border-radius: 8px;
}
#cookie-settings-modal h2 {
  margin-top: 0;
    font-size: 1.5em;

}
#cookie-settings-modal label {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}
#cookie-settings-modal input[disabled] {
  cursor: not-allowed;
}
#cookie-settings-modal button {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  cursor: pointer;
}

/* --- Button αλλαγής ρυθμίσεων --- */
#change-cookie-settings {
  position: fixed;
  bottom: 10px;
  left: 10px;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  background: #f1c40f;
  color: #000;
  cursor: pointer;
  z-index: 9999;
  display: none;
  background: url(../img/cookies.png);
    width: 60px;
    height: 60px;
    text-indent: -1550px;
    background-repeat: no-repeat;
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  #cookie-banner span {
    margin-bottom: 15px;
    font-size: 14px !important;
    line-height: 1.4 !important;
    display: block;
  }
  #cookie-banner div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
  #cookie-banner button {
    margin: 0 !important;
    flex: 1 1 45%;
    font-size: 13px;
    padding: 12px 5px;
    border-radius: 4px;
  }
  #cookie-banner button.settings {
    flex: 1 1 100%;
  }
  #cookie-settings-modal {
    width: 90%;
    padding: 20px;
  }
}