body {
  background: #FFF5EC;
  margin: 0;
  font-family: 'Rubik', sans-serif;
  color: #333;
  padding: 20px;
}

h2, h3 {
  text-align: center;
  color: #333;
}

select, button, .form-input, .form-textarea {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  margin: 10px 0;
  border-radius: 10px;
  border: 2px solid #FF6D00;
  background-color: white;
}

button {
  background: #FF6D00;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #e65c00;
}



.price {
  font-size: 1.4rem;
  color: #FF6D00;
  font-weight: bold;
  margin: 10px 0;
}

a.btn {
  display: block;
  text-align: center;
  background: #FF6D00;
  color: white;
  padding: 12px;
  border-radius: 30px;
  margin-top: 10px;
  text-decoration: none;
}

a.btn:hover {
  background: #e65c00;
}

.mobile-header {
  background: #FFF1E0;
  padding: 10px 0;
  text-align: center;
  border-bottom: 2px solid #FFD1B3;
}



.mobile-header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}

.mobile-logo {
  height: 80px;
  width: 80px;
  border-radius: 50%;
}

.birthping-text {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
}



.zustellzeit-box {
  background: #FFF1E0;
  padding: 20px;
  border-radius: 16px;
  margin: 20px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}



.dropdown-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
}



.update-feedback {
  margin: 10px 0;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
}

.update-feedback.success {
  background-color: #E5F9E7;
  color: #2ECC71;
}

.update-feedback.error {
  background-color: #FDE4E4;
  color: #E74C3C;
}


.info-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-left: 6px solid #ccc;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #444;
  margin-bottom: 12px;
}

.info-box .info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Farbvarianten */
.info-accent {
  background: #FFE0CC;
  border-left-color: #FF6D00;
}

.info-success {
  background: #E5F9E7;
  border-left-color: #2ECC71;
}

.info-warning {
  background: #FFF4D6;
  border-left-color: #FFB800;
}

.info-error {
  background: #FDE4E4;
  border-left-color: #E74C3C;
}

.abo-card {
  background: #fff;
  border: 2px solid #FFD1B3;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative;
}

.abo-active {
  background: #FFF1E0;
  border-color: #FF6D00;
}

.abo-active-note {
  background: #2ecc71;
  color: white;
  padding: 8px 12px;
  font-size: 0.9rem;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}



.abo-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #2ecc71;
  color: white;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.abo-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.abo-card h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #FF6D00;
}

.price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #FF6D00;
  margin: 10px 0 15px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.features li {
  margin-bottom: 6px;
}

/* Box optisch „ausgegraut" bei deaktiviertem Zustand */
.zustellzeit-box.locked {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.zustellzeit-box.locked::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: auto; /* verhindert Interaktion */
}

/* Zusatzfarben für Hinweisboxen */
.info-warning {
  background: #FFF4D6;
  border-left-color: #FFA500;
}

.footer {
  background: #FFE0CC;
  text-align: center;
  padding: 30px 15px;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #FFD1B3;
  margin-top: 40px;
}

.footer-text {
  margin: 0;
  color: #444;
}

.footer a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .dot {
  margin: 0 10px;
  color: #999;
}

/* Formular-Styling */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: 10px;
  border: 2px solid #FF6D00;
  background-color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-container {
  background: #FFF1E0;
  padding: 20px;
  border-radius: 16px;
  margin: 20px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.page-title {
  text-align: center;
  margin-bottom: 20px;
  color: #FF6D00;
  font-size: 1.5rem;
  font-weight: bold;
}

.submit-btn {
  background: #FF6D00;
  color: white;
  font-weight: bold;
  padding: 14px;
  border-radius: 10px;
  border: none;
  width: 100%;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #e65c00;
}

.delete-btn {
  background: white;
  color: #E74C3C;
  font-weight: bold;
  padding: 14px;
  border-radius: 10px;
  border: 2px solid #E74C3C;
  width: 100%;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 20px;
}

.delete-btn:hover {
  background: #FDE4E4;
}

/* Modal-Dialog */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: white;
  margin: 20% auto;
  padding: 20px;
  border-radius: 16px;
  width: 80%;
  max-width: 400px;
}

.modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.modal-buttons button {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.cancel-btn {
  background: #f1f1f1;
  border: none;
  color: #333;
}

.confirm-btn {
  background: #E74C3C;
  border: none;
  color: white;
}

/* Premium-Features */
.premium-feature {
  opacity: 0.6;
  position: relative;
}

.premium-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: #FFB800;
  color: white;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Feedback-Nachrichten */
.success-message {
  background: #E5F9E7;
  border-left: 6px solid #2ECC71;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.error-message {
  background: #FDE4E4;
  border-left: 6px solid #E74C3C;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.delete-feedback {
  display: none;
  margin-top: 20px;
}

.delete-success {
  background: #E5F9E7;
  border-left: 6px solid #2ECC71;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.delete-error {
  background: #FDE4E4;
  border-left: 6px solid #E74C3C;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.redirect-message {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
}