body { font-family: sans-serif; text-align: center; padding: .5rem 1rem; background: #f0f0f0; }
button { margin: 0.5rem; padding: 1rem 2rem; font-size: 1rem; }
.hidden { display: none; }
form { margin-top: 2rem; }
input { display: block; margin: 0.5rem auto; padding: 0.5rem;}
.pwa input[type="text"],
.pwa input[type="email"] {
  background-color: #fff6a6;
  color: #000000;
}
.status { margin-top: 1rem; font-size: 1.5rem; }
.pwa .custom-logo {width:64px;}
.pwa .site-branding-text .site-title .navbar-brand {font-size:1.15em !important;}
.pwa .site-branding-text p.site-description {display:none;}

i.fa,
i.fas {
  margin-right:.75rem;
  min-width: 1.25rem;
}
.fa-times-circle,
.fa-refresh {
  margin-right: 0 !important;
  min-width: none !important;
}
.fa-arrow-right {
  margin-left: .75rem;
}
.mandatory {
  background-color: #f00000;
  border-radius: 3px;
  color: #FFF;
  display: inline-block;
  font-size: 90%;
  font-weight: bold;
  padding: .15rem .5rem .25rem .5rem;
}
.tentative {
  background-color: #4f4ffe;
  border-radius: 3px;
  color: #FFF;
  display: inline-block;
  font-size: 75%;
  font-weight: bold;
  margin-left: 0.5em;
  padding: .15rem .5rem .25rem .5rem;
}
.btn-outline-secondary {color: #ffff00 !important;}
.pwa-btn-group .btn,
#app-ui .btn,
.eventpwa-btn {
    font-size: 1rem;
    padding: .375rem .75rem .375rem .5rem;
    flex: 1 1 0;
}
.btn {
  padding: .15rem .75rem .25rem .5rem;
  width: auto !important;
}
/* Overlay für Event-PWA, abgeleitet vom Stil der krampuse.org */
#message-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.3s;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#message-overlay .overlay-content {
  background: linear-gradient(135deg, #222 80%, #313133 100%);
  color: #fafafa;
  border-radius: 18px;
  box-shadow: 0 10px 40px 0 rgba(0,0,0,0.35), 0 2px 8px 0 #2228;
  max-width: 95vw;
  max-height: 88vh;
  min-width: 300px;
  min-height: 180px;
  padding: 2.3rem 2rem 2rem 2rem;
  position: relative;
  overflow-y: auto;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}
#message-overlay .overlay-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.6em;
  color: #ffff00;
  text-shadow: 0 2px 8px #000a;
}
#message-overlay .overlay-date {
  color: #ffff00;
  font-size: 1.05em;
  margin-bottom: 1em;
  opacity: 0.75;
}
#message-overlay .overlay-body {
  margin-bottom: 1.6em;
  font-size: 1.15em;
  line-height: 1.5;
}
#message-overlay a {
  color: #ffff00;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.15s;
}
#message-overlay a:hover {
  color: #ffff00;
  text-decoration: none;
}
#message-overlay .overlay-close {
  position: absolute;
  top: 0.35em;
  right: 0.35em;
  background: linear-gradient(135deg, #ffff00 70%, #ffb300 100%);
  color: #221a00;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;
  box-shadow: 0 2px 6px #0007;
  width: 1.3em;
  line-height: 1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
}
#message-overlay .overlay-close:hover {
  background: linear-gradient(135deg, #ffb300 80%, #ffff00 100%);
  color: #000;
}

/* Nachrichten-Liste (ul#messages-list) für PWA - krampuse.org-Stil */
#messages-list {
  background: transparent;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

#messages-list .list-group-item {
  background: linear-gradient(135deg, #242425 80%, #28282a 100%);
  color: #f8f7f5;
  border: none;
  border-bottom: 1px solid #33353a;
  border-radius: 14px;
  margin: 0 0 1em 0;
  box-shadow: 0 2px 8px #0001;
  padding: 1.1em 1.3em 1.1em 1.3em;
  font-size: 1.1em;
  position: relative;
  transition: background 0.16s;
}
#messages-list .list-group-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

#messages-list .list-group-item .small.text-muted {
  color: #ffff00;
  font-size: 0.98em;
  margin-bottom: 0.35em;
  opacity: 0.8;
  display: block;
}
#messages-list .list-group-item .font-weight-bold {
  display: block;
  color: #ffff00;
  font-size: 1.18em;
  font-weight: 700;
  margin-bottom: 0.27em;
  text-shadow: 0 1px 4px #0004;
  letter-spacing: 0.01em;
}
#messages-list .list-group-item .overlay-body,
#messages-list .list-group-item .message-body {
  margin-bottom: 0.9em;
  line-height: 1.5;
  color: #fff7;
  font-size: 1.04em;
}

#messages-list .list-group-item a,
#messages-list .list-group-item a:visited {
  color: #ffff00;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.13s;
  margin-top: 0.7em;
  display: inline-block;
}
#messages-list .list-group-item a:hover {
  color: #fff6a6;
  text-decoration: none;
}

#messages-list .btn, 
#messages-list .btn:visited {
  background: linear-gradient(135deg, #ffff00 60%, #ffb300 100%);
  color: #1c1900;
  border-radius: 1.3em;
  font-weight: 600;
  border: none;
  margin-top: 0.7em;
  padding: 0.42em 1.5em;
  box-shadow: 0 2px 6px #0004;
  text-shadow: none;
  transition: background 0.15s, color 0.12s;
}
#messages-list .btn:hover {
  background: linear-gradient(135deg, #ffb300 80%, #ffff00 100%);
  color: #000;
}

/* Event-PWA User options */
#eventpwa-user-options {
  margin: 2.5em 0 2em 0;
  background: #232323;
  border-radius: 16px;
  padding: 1.2em 1em 1em 1em;
  box-shadow: 0 2px 14px 0 rgba(0,0,0,0.19);
}

.eventpwa-option-row {
  margin-bottom: 1.6em;
  display: flex;
  align-items: center;
}

.eventpwa-switch-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 1.1em;
  font-size: 1.1em;
  width: 100%;
  color: #fff;
  font-weight: 500;
}

.eventpwa-switch-input {
  display: none;
}

.eventpwa-switch-slider {
  position: relative;
  width: 48px;
  height: 28px;
  background: #373737;
  border-radius: 28px;
  transition: background 0.2s;
  margin-right: 0.7em;
  box-shadow: 0 2px 6px 0 rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.eventpwa-switch-slider:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 1px 5px rgba(0,0,0,0.16);
}

.eventpwa-switch-input:checked + .eventpwa-switch-slider {
  background: #ffff00;
  box-shadow: 0 0 8px #ffff0099;
}

.eventpwa-switch-input:checked + .eventpwa-switch-slider:before {
  background: #232323;
  transform: translateX(20px);
}

.eventpwa-switch-text {
  font-size: 1.12em;
  font-weight: 500;
  color: #ffff00;
  letter-spacing: 0.01em;
}

.pwa-btn-read {
    display: inline-block;
    padding: 0.5em 1.2em;
    margin-top: 1.2em;
    font-size: 1.05em;
    color: #198754;
    background: #e8f8ee;
    border: none;
    border-radius: 2em;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    transition: background 0.2s, color 0.2s;
}
.pwa-btn-read:hover,
.pwa-btn-read:focus {
    background: #b7efd1;
    color: #145c2c;
    outline: none;
}

.pwa-badge-read {
    display: inline-block;
    padding: 0.35em 1.1em;
    border-radius: 2em;
    background: #27ae60;
    color: #fff;
    font-size: 0.97em;
    margin-top: 1em;
    letter-spacing: 0.03em;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

#user-events-list {
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 100%;
}


.dashboard-card.event-card {
  border: 1px solid #ffff00;
  border-radius: 5px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto 1.5em auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-card-header {
    display: flex;
    align-items: center;
    gap: 0.65em;
    font-size: 1.13em;
    font-weight: 600;
    color: #ffff00;
    margin-bottom: 0.1em;
}
.event-card-icon {
    font-size: 1.5em;
    line-height: 0.8em;
}
.event-card-title {
    font-size: 1.14em;
    letter-spacing: 0.02em;
}

.event-card-date {
    font-size: 1.06em;
    color: #ffff00;
    margin-bottom: 0.2em;
}

.event-card-adresse,
.event-card-treffpunkt,
.event-card-treffpunktort,
.event-card-infos,
.event-card-rolle {
    font-size: 1em;
    color: #dedede;
}
.event-card .event-card-infos {
  font-size:0.8em;
  column-count: 2;
  column-gap: 1em;
}
.event-card-details-btn {
    margin-top: 1.0em;
    min-width: 120px;
}

@media (max-width: 600px) {
    .dashboard-card.event-card {
        padding: 1em 0.6em;
        max-width: 98vw;
    }
    .event-card-header, .event-card-title {
        font-size: 1em;
    }
    .event-card .event-card-infos {
        column-count: 1;
        column-gap: 0;
        display: flex;
        flex-direction: column;
        gap: 0.3em;
    }
    .event-card .event-card-infos .btn {
        width: 100%;
        margin: 0.1em 0;
        justify-content: center;
        min-width: 0;
        max-width: 100%;
        font-size: 0.85em;
        padding: 0.4em 0.6em;
    }
}

.dashboard-btn,
.event-card-details-btn {
    background: #23232b;
    border: 2px solid #ffff00;
    border-radius: 0.7em;
    color: #f8f8f8;
    font-size: 1.09em;
    font-weight: 500;
    min-width: 190px;
    padding: 0.65em 1.2em;
    margin: .15em 0;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    transition: background 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 8px #ffff0040;
}

.dashboard-btn:active,
.dashboard-btn:focus,
.event-card-details-btn:active,
.event-card-details-btn:focus {
    background: #353544;
    box-shadow: 0 0 0 2px #ffd950bb;
}

@media (max-width: 600px) {
    .dashboard-btn,
    .event-card-details-btn {
        min-width: 0;
        max-width: 100%;
        font-size: 0.9em;
        padding: 0.5em 0.8em;
        margin: 0.1em 0;
        gap: 0.3em;
        flex-wrap: wrap;
        justify-content: center;
    }
    .dashboard-btn i.fa,
    .event-card-details-btn i.fa {
        margin-right: 0.3em;
        min-width: 1em;
    }
}

.ja, .nein, .vielleicht {
  border-radius: 4px;
  color: #FFF;
  padding: .15rem .5rem .25rem .5rem;
}
.ja {
  background-color:#198754;
}
.nein {
  background-color:crimson;
}
.vielleicht {
  background-color: #ffb300;
}

/* Event-PWA: Übersicht kommende Termine */
#user-events-overview .list-group-item {
    background: #111;
    color: #ffff00;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 8px 0 8px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    font-size: 1em;
}
#user-events-overview .user-events-date {
    flex: 0 0 110px;
    width: 110px;
    min-width: 90px;
    max-width: 120px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#user-events-overview .user-events-ort {
    flex: 0 0 120px;
    width: 120px;
    min-width: 80px;
    max-width: 140px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#user-events-overview .user-events-title {
    flex: 1 1 120px;
    min-width: 80px;
    max-width: 180px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media (max-width: 600px) {
    #user-events-overview { max-width: 98vw; }
    #user-events-overview .list-group-item {
        font-size: 0.97em;
        flex-direction: column;
        align-items: flex-start;
    }
    #user-events-overview .user-events-date,
    #user-events-overview .user-events-ort,
    #user-events-overview .user-events-title {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin-bottom: 2px;
    }
}

.user-events-dateseparator {
    border-bottom: 1px solid #ffff00;
    margin: 4px 0 4px 0;
    height: 0;
}

/* Entferne alte, nicht mehr benötigte Linienklassen */
.user-events-dotted, .user-events-datechange {
    border-bottom: none !important;
}

.event-card-unvoted {
  border: 2px dashed #ffff00 !important;
  background: rgba(255, 255, 0, 0.1) !important;
  color: #333 !important;
  font-style: italic;
}

.event-card-tentative {
  border: 2px dotted rgba(254, 214, 56, 1) !important;
  border-left: 6px solid rgba(254, 214, 56, 1) !important;
  background: rgba(254, 214, 56, 0.25) !important;
  position: relative;
}
.event-card-unvoted.event-card-tentative {
  border: 2px solid rgba(254, 214, 56, 1)  !important;
  border-left-width: 8px !important;
  background: rgba(255, 255, 0, 0.22) !important;
  font-style: italic;
}
#event-filter {margin-top: 0 auto}
#event-filter .btn {
  margin: .25rem 0;
}
#event-filter .fa-times-circle,
#event-filter .fa-refresh {
  margin-right: 0.75rem !important;
  min-width: 1.25rem !important;
}
#event-filter .btn-group-sm {
  margin-right: 0 !important;
  min-width: none !important;
}

/* --- Konfigurations-Card (part-push) --- */
#part-push .card {
  background: linear-gradient(135deg, #242425 80%, #28282a 100%);
  color: #f8f7f5;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  border: none;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}
#part-push .card-header {
  background: linear-gradient(135deg, #222 80%, #313133 100%);
  color: #ffff00;
  border-radius: 18px 18px 0 0;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  padding: 1.1em 1.3em;
}
#part-push .card-body {
  padding: 1.5em 1.3em 1.3em 1.3em;
}
#part-push .eventpwa-option-row {
  margin-bottom: 0.5em;
}
#part-push #eventpwa-user-options h4,
#part-push #eventpwa-email-section h4 {
  color: #ffff00;
  font-size: 1.1em;
  margin-bottom: 0.7em;
  font-weight: 600;
}
#part-push #eventpwa-email-section form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
}
#part-push #eventpwa-email-input {min-width: 0;}
#part-push #eventpwa-email-feedback {
  min-height: 1.5em;
  font-size: 0.98em;
}
@media (max-width: 600px) {
  #part-push .card {
    max-width: 98vw;
    padding: 0;
  }
  #part-push .card-header, #part-push .card-body {
    padding-left: 0.7em;
    padding-right: 0.7em;
  }
  #part-push .btn-group .btn, #part-push .btn {
    font-size: 0.98em;
  }
}

/* --- Konfigurations-Buttons: Einheitliches Layout und Ausrichtung --- */
#part-push .card-body .btn-group,
#part-push .card-body .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: space-between;
  margin-bottom: 1em;
}
#part-push .card-body .btn {
  min-width: 160px;
  max-width: 220px;
  font-size: 1rem;
  padding: .375rem .75rem .375rem .5rem;
  margin-bottom: 0.3em;
  flex: 1 1 160px;
  text-align: center;
}
#part-push .card-body .btn-row.single {
  justify-content: flex-end;
}
#part-push .card-body .btn-row.single .btn {
  margin-left: auto;
}
@media (max-width: 600px) {
  #part-push .card-body .btn,
  #part-push .card-body .btn-group,
  #part-push .card-body .btn-row {
    min-width: 100px;
    max-width: 100%;
    flex: 1 1 100%;
    font-size: 0.98em;
  }
}

.pwa-toolbar i {
  font-size: 2rem;
  margin-left: .75rem;
}
.pwa-toolbar .btn {
  font-size: 1.2rem;
  margin:0 .25rem;
  padding: .5rem;
}
.vote-btn-group .btn {
  font-size: 1.2rem !important;
  margin:.15rem .25rem !important;
  padding: .5rem !important;
}

/* Abstimmungs-Overlay für Event-PWA */
.event-vote-overlay-bg {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.3s;
}
.event-vote-overlay-bg i.fa,
.event-vote-overlay-bg i.fas,
.event-card .event-card-infos i.fa,
.event-card .event-card-infos i.fas {
  margin-right:.25rem;
  min-width: .75rem;
}
.event-vote-overlay-bg .overlay-content {
  background: linear-gradient(135deg, #222 80%, #313133 100%);
  color: #fafafa;
  border-radius: 18px;
  box-shadow: 0 10px 40px 0 rgba(0,0,0,0.35), 0 2px 8px 0 #2228;
  max-width: 85vw;
  min-width: 50vw;
  min-height: 180px;
  padding: 2.3rem 2rem 2rem 2rem;
  position: relative;
  overflow-y: auto;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}
.event-vote-overlay-bg .overlay-close {
  position: absolute;
  top: 0.35em;
  right: 0.35em;
  background: linear-gradient(135deg, #ffff00 70%, #ffb300 100%);
  color: #221a00;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;
  box-shadow: 0 2px 6px #0007;
  width: 1.3em;
  line-height: 1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
}
.event-vote-overlay-bg .overlay-close:hover {
  background: linear-gradient(135deg, #ffb300 80%, #ffff00 100%);
  color: #000;
}
.event-vote-overlay-bg label { margin-right: 1em; font-weight: 400; }
.event-vote-overlay-bg input[type="radio"],
.event-vote-overlay-bg input[type="checkbox"] {
  margin-right: 0.3em;
}
.event-vote-overlay-bg form  {margin-top: 0;}
.event-vote-overlay-bg .form-group { margin-bottom: 1.1em; }
.event-vote-overlay-bg .form-control { width: 100%; margin-top: 0.3em; }
.event-vote-overlay-bg textarea.form-control { resize: vertical; }
.event-vote-overlay-bg .btn { 
  font-size: 1rem; 
  margin:0 .25rem; 
  padding: .25rem;
  min-width: none; 
}
.event-vote-infos {
  font-size:0.8em;
}

@media (max-width: 600px) {
  .event-vote-overlay-bg .overlay-content {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    min-width: 0;
    max-width: 99vw;
  }
}

/* --- Button-Group-Style für Abstimmungs-Overlay wie Backend --- */
.btn-check { display: none; }
.btn-outline-success, .btn-outline-primary, .btn-outline-danger, .btn-outline-warning, .btn-outline-secondary {
  border-width: 2px;
  font-weight: 500;
  font-size: 1.08em;
  padding: 0.7em 0.5em;
  border-radius: 10px;
  margin-bottom: 0.3em;
  width: 100%;
  text-align: center;
  transition: background 0.13s, color 0.13s, border-color 0.13s;
}
.btn-check:checked + .btn-outline-success,
.btn-check:checked + .btn-outline-primary,
.btn-check:checked + .btn-outline-danger,
.btn-check:checked + .btn-outline-warning,
.btn-check:checked + .btn-outline-secondary {
  background: #ffff00;
  color: #222;
  border-color: #ffff00;
  font-weight: bold;
}
.btn-outline-success { border-color: #28a745; color: #28a745; background: none; }
.btn-outline-primary { border-color: #007bff; color: #007bff; background: none; }
.btn-outline-danger { border-color: #dc3545; color: #dc3545; background: none; }
.btn-outline-warning { border-color: #ffc107; color: #ffc107; background: none; }
.btn-outline-secondary { border-color: #6c757d; color: #6c757d; background: none; }
.btn-outline-success:hover, .btn-outline-success:focus { background: #28a74522; }
.btn-outline-primary:hover, .btn-outline-primary:focus { background: #007bff22; }
.btn-outline-danger:hover, .btn-outline-danger:focus { background: #dc354522; }
.btn-outline-warning:hover, .btn-outline-warning:focus { background: #ffc10722; }
.btn-outline-secondary:hover, .btn-outline-secondary:focus { background: #6c757d22; }

/* Grid für Rollen-Checkboxen */
.event-vote-overlay-bg .row.g-2 { display: flex; flex-wrap: wrap; margin-left: -0.25em; margin-right: -0.25em; }
.event-vote-overlay-bg .row.g-2 > [class^='col-'] { padding-left: 0.25em; padding-right: 0.25em; }

.event-hint {margin-left: 0; margin-right: auto; display: flex; align-items: flex-start; background: #fff9d6; color: #222; border-radius: 7px; margin: 8px 0; padding: 8px 12px; font-size: 1.05em; box-shadow: 0 1px 2px #eee; }
.event-hint-icon { flex: 0 0 auto; margin-right: 10px; font-size: 2.2em; color: #bfa100; align-self: flex-start; line-height: 1; }
.event-hint-text { flex: 1 1 auto; color: #333; }

.w-100 { width: 100% !important; }
.d-none { display: none !important; }
.minw-180 { min-width: 180px !important; }
.minw-220 { min-width: 220px !important; }
.maxw-200 { max-width: 200px !important; }
.minh-1-5em { min-height: 1.5em !important; }
.fs-14em { font-size: 1.4em !important; }
.br-b-16 { border-radius: 0 0 16px 16px !important; }
.debug-log { white-space: pre; font-size: 12px; color: #b00; padding: 6px; }
.maxw-500 { max-width: 500px !important; }
.maxw-600 {
  max-width: 600px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}
.p-1 { padding: 1rem !important; }
.bg-dark { background: #232323 !important; }
.br-10 { border-radius: 10px !important; }
.fs-11em { font-size: 1.1em !important; }
.fw-bold { font-weight: bold !important; }
.m-0 { margin: 0 !important; }
.lh-15 { line-height: 1.5 !important; }
.border-b-yellow { border-bottom: 2px solid #ffff00 !important; }
.text-red { color: #ff3333 !important; }
.maxw-420 { max-width: 420px !important; }

.event-info {margin-left: 0; margin-right: auto; background: #fbeea4; border-left: 6px solid #007bff; border-radius: 12px; box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07); padding: 1.2rem 1.5rem; margin-bottom: 1.5rem; font-size: 1.08em; }
.event-info-icon { color: #007bff; font-size: 3em; margin-right: 1rem; flex-shrink: 0; }
.event-info-text { flex: 1 1 auto; }
.event-info-text p {color:#222;}
@media (max-width: 700px) {
  .event-hint, .event-info { max-width: 100%; padding: 1rem; }
  .event-info-icon { font-size: 1.5em; }
}

.event-info-accordion-header {
  display: block;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid #007bff;
  color: #007bff;
  font-weight: 500;
  font-size: 1em;
  padding: 0.5em 1em;
  border-radius: 6px;
  margin-bottom: 0.5em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.event-info-accordion-header:hover, .event-info-accordion-header:focus {
  background: #eaf4ff;
  color: #0056b3;
  border-color: #0056b3;
}
.event-info-accordion-body {
  padding: 0.7em 1.2em 0.7em 1.2em;
  background: #fff;
  border-radius: 0 0 6px 6px;
  margin-bottom: 1em;
  color: #222;
}

.overlay-header {
  color: #ffff00;
  border-radius: 18px 18px 0 0;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  padding: 1.1em 1.3em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.overlay-header .overlay-icon {
  font-size: 1.2em;
  /*margin-right: 0.7em;*/
  color: #ffff00;
  min-width: 1.5em;
  display: flex;
  align-items: center;
}
.overlay-header .overlay-title {
  flex: 1 1 auto;
  font-size: 1.15em;
  font-weight: 700;
  color: #ffff00;
  text-shadow: 0 2px 8px #000a;
  margin-bottom: 0;
}
.overlay-header .btn-group {
  flex-shrink: 0;
  gap: 0.15em;
}
.overlay-header .btn {
  width: 2.5rem !important;
  height: 2.5rem !important;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  margin: 1rem 0;
}
.overlay-header .btn i.fa,
.overlay-header .btn i.fas {
  font-size: .8em;
  margin: 0;
  min-width: 0;
}
.card.mb-3,
.card.mb-4 {
  margin-left: 0 !important;
  margin-right: auto !important;
}