#cookie-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 99999;
  font-size: 14px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}

#cookie-consent-bar button {
  background: #4fc3f7;
  border: none;
  color: #000;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

@media (min-width: 600px) {
  #cookie-consent-bar {
    flex-wrap: nowrap;
  }
  #cookie-consent-bar button {
    margin-top: 0;
  }
}
#cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#cookie-modal {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

#cookie-modal h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

#cookie-modal p {
  font-size: 14px;
  margin-bottom: 20px;
}

#cookie-modal a {
  color: #007BFF;
  text-decoration: underline;
}

#cookie-modal button {
  margin: 5px 10px;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

#cookie-accept {
  background: #4fc3f7;
  color: #000;
}

#cookie-settings {
  background: #f1f1f1;
  color: #333;
}
#cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#cookie-modal {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  font-family: 'Segoe UI', sans-serif;
}

#cookie-text-container {
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 20px;
  text-align: left;
  font-size: 14px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.cookie-buttons button {
  margin: 10px 5px;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

#acceptAll {
  background-color: #ff6600;
  color: #fff;
}

#rejectAll {
  background-color: #cccccc;
  color: #000;
}

#moreOptions {
  background-color: #f5f5f5;
  color: #000;
}
