/* Allgemeines Styling */

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* Hellgrauer Hintergrund */
}

a {
    color: #007bff; /* Blauer Link-Farbe */
    text-decoration: none;
}

/* Header */

.container-fluid,
.row {
  margin: 0;
}

.header {
  padding: 0;
}

.navbar-brand {
    max-height: 100px; /* Begrenzte Höhe für das Logo */
}

.d-flex {
    align-items: flex-start; /* Vertikale Ausrichtung am Anfang */
    justify-content: space-between; /* Horizontale Verteilung */
}

.nav {
  margin: 0;
}

/* Navigation mit weißer Schriftfarbe */
.nav-link {
  color: white; /* Weiße Schriftfarbe für Links */
}

.nav-link:hover {
  color: #007bff; /* Blaue Hover-Farbe für Links */
}

/* Hauptinhalt */

.main {
    padding-top: 20px;
}

h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.card {
    margin-bottom: 20px;
}

.card-img-top {
    border-top-right-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
}

.card-body {
    padding: 15px;
}

/* Sidebar */

aside {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.list-group-item {
    border-bottom: 1px solid #ddd;
}

.list-group-item:last-child {
    border-bottom: none;
}

/* Footer mit weißer Schriftfarbe */
.footer {
    background-color: #333;
    color: white; /* Weiße Schriftfarbe im Footer */
    text-align: center;
    padding: 10px 0;
}

/* Bildergalerie */

.gallery-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Social Media */

.btn-outline-primary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    margin-right: 10px;
}

.btn-outline-primary:hover {
    background-color: #fff;
    color: #007bff;
}

/* Responsive Anpassungen */

@media (max-width: 768px) {
  /* Navbar auf mobilen Geräten */
  .navbar-collapse {
    flex-basis: 100%;
    text-align: center;
  }

  .navbar-nav .nav-link {
    flex-direction: column;
    margin-bottom: 10px;
  }

  /* Spalten im Hauptinhalt auf mobilen Geräten */
  .col-md-8,
  .col-md-4 {
    flex: 1;
  }
}
/* Calendar Table Styles */
.calendar {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-family: sans-serif;
}

.calendar th, .calendar td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.calendar th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.calendar tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.calendar .event {
  font-weight: bold;
  color: #337ab7; /* or any other desired color for event text */
}
.seelenrausch-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
}

.seelenrausch-header {
  text-align: center;
  margin-bottom: 10px;
  height: 120px; /* Adjust the height as needed */
  color: white; /* Adjust the text color as needed */
}

.seelenrausch-header h2 {
  font-size: 1.5em;
  margin: 0;
}

.seelenrausch-belohnungen,
.seelenrausch-beschreibung,
.seelenrausch-zeitplan {
  margin-bottom: 10px;
}

.seelenrausch-belohnungen p,
.seelenrausch-beschreibung p,
.seelenrausch-zeitplan-details p {
  margin: 0;
}

.seelenrausch-rundenbelohnungen {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.seelenrausch-rundenbelohnungen img {
  margin-right: 10px;
}

.seelenrausch-rundenbelohnungen p {
  text-align: center;
  font-weight: bold;
}

.seelenrausch-trenner {
  border: none;
  border-top: 1px dashed #ddd;
  margin: 10px 0;
}

.seelenrausch-zeitplan {
  display: flex;
  align-items: center;
}

.seelenrausch-zeitplan-symbol {
  margin-right: 10px;
  font-size: 1.5em;
  color: #333;
}

.seelenrausch-zeitplan-details p:first-child {
  margin-bottom: 5px;
}
