/* Global Styles */
html, body {
    height: 100%;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
  }
  
  header {
    color: #333;
  }
  
  /* Footer immer unten */
  footer {
    margin-top: auto;  /* sorgt dafür, dass der Footer immer unten bleibt */
    padding: 10px;
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
  }
  
  footer a {
    color: #222222;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  /* Dark Mode Styles */
  body.dark-mode {
    background-color: #333;
    color: white;
  }
  
  body.dark-mode header {
    background-color: #222;
    color: white;
  }
  
  body.dark-mode .card {
    background-color: #444;
    color: white;
  }
  
  body.dark-mode .btn {
    background-color: #555;
    color: white;
  }
  
  body.dark-mode footer {
    background-color: #222;
    color: white;
  }

  body.dark-mode header {
    background-color: #222;
    color: white;
  }
  
  body.dark-mode footer a {
    color: #9c9c9c;
  }
  
  body.dark-mode footer a:hover {
    text-decoration: underline;
  }
  
  /* Select Box Styles */
  select {
    max-width: 250px;
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
  }
  
  body.dark-mode select {
    background-color: #555;
    color: white;
    border: 1px solid #444;
  }
  
  /* Button Styles */
  .btn-light {
    background-color: #f8f9fa;
    color: #333;
  }
  
  body.dark-mode .btn-light {
    background-color: #444;
    color: white;
  }
  
  .btn-primary {
    background-color: #007bff;
  }
  
  select {
    max-width: 250px;
  }
  .toast {
    opacity: 0;
    background-color: #0000008e;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 20px; 
    right: 20px; 
    z-index: 9999;
  }
  
  .toast.show {
    opacity: 1;
  } 
  
  .donation-container {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  body.dark-mode .modal-content {
    background-color: #333;
    color: white !important;
  }
  .modal-content a {
    text-decoration: none !important;
    color: rgb(2, 2, 2);
  }
  body.dark-mode .modal-content a {
    text-decoration: none !important;
    color: rgb(255, 255, 255);
  }
  .badge-vertical {
  font-size: 1.2rem; /* Schriftgröße vergrößern */
  padding: 10px 15px; /* Innenabstand vergrößern */
  border-radius: 8px; /* Abgerundete Ecken */
  }
  .footer {
    font-size: 1em;
    color: rgb(0, 0, 0);
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 0.5em 0;
    height: auto;
  }
  .footer a {
    text-decoration: none;
    color: rgb(0, 0, 0);
  }

  body.dark-mode .footer {
    font-size: 1em;
    color: rgb(255, 255, 255);
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgb(27, 27, 27);
    text-align: center;
    padding: 0.5em 0;
    height: auto;
  }
  body.dark-mode .footer a {
    text-decoration: none;
    color: rgb(255, 255, 255);
  }

  .modal-body iframe {
    border: none;
    width: 100%;
    height: 80vh;
  }