/* ========================================
   EME Custom Styles - Jugendweihe Hamburg
   ======================================== */

/* ========================================
   EME Form Styles - Allgemein für alle Formulare
   ======================================== */

/* Basis-Formular-Container */
.membership-form-wrapper,
.eme-form-wrapper,
.eme-booking-form,
.eme-membership-form {
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Cards für Formular-Sektionen */
.membership-form-wrapper .card,
.eme-form-wrapper .card,
.eme-booking-form .card,
.eme-membership-form .card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
}

.membership-form-wrapper .card:hover,
.eme-form-wrapper .card:hover,
.eme-booking-form .card:hover,
.eme-membership-form .card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Card Headers */
.membership-form-wrapper .card h2,
.eme-form-wrapper .card h2,
.eme-booking-form .card h2,
.eme-membership-form .card h2 {
    color: #4e82be;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e9ecef;
    position: relative;
}

.membership-form-wrapper .card h2::after,
.eme-form-wrapper .card h2::after,
.eme-booking-form .card h2::after,
.eme-membership-form .card h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4e82be, #3a6ba5);
    border-radius: 2px;
}

/* Grid Layout */
.membership-form-wrapper .grid-2,
.eme-form-wrapper .grid-2,
.eme-booking-form .grid-2,
.eme-membership-form .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Form Fields */
.membership-form-wrapper .field,
.eme-form-wrapper .field,
.eme-booking-form .field,
.eme-membership-form .field {
    margin-bottom: 1.5rem;
}

.membership-form-wrapper label,
.eme-form-wrapper label,
.eme-booking-form label,
.eme-membership-form label {
    display: inline-block;
    font-weight: normal;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: normal;
    margin-right: 0.5rem;
}

/* Input Fields - Modern Design */
.membership-form-wrapper input[type="text"],
.membership-form-wrapper input[type="email"],
.membership-form-wrapper input[type="tel"],
.membership-form-wrapper input[type="password"],
.membership-form-wrapper input[type="number"],
.membership-form-wrapper select,
.membership-form-wrapper textarea,
.eme-form-wrapper input[type="text"],
.eme-form-wrapper input[type="email"],
.eme-form-wrapper input[type="tel"],
.eme-form-wrapper input[type="password"],
.eme-form-wrapper input[type="number"],
.eme-form-wrapper select,
.eme-form-wrapper textarea,
.eme-booking-form input[type="text"],
.eme-booking-form input[type="email"],
.eme-booking-form input[type="tel"],
.eme-booking-form input[type="password"],
.eme-booking-form input[type="number"],
.eme-booking-form select,
.eme-booking-form textarea,
.eme-membership-form input[type="text"],
.eme-membership-form input[type="email"],
.eme-membership-form input[type="tel"],
.eme-membership-form input[type="password"],
.eme-membership-form input[type="number"],
.eme-membership-form select,
.eme-membership-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 1rem;
    font-family: inherit;
    color: #2c3e50;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.membership-form-wrapper input:focus,
.membership-form-wrapper select:focus,
.membership-form-wrapper textarea:focus,
.eme-form-wrapper input:focus,
.eme-form-wrapper select:focus,
.eme-form-wrapper textarea:focus,
.eme-booking-form input:focus,
.eme-booking-form select:focus,
.eme-booking-form textarea:focus,
.eme-membership-form input:focus,
.eme-membership-form select:focus,
.eme-membership-form textarea:focus {
    outline: none;
    border-color: #4e82be;
    box-shadow: 0 0 0 2px rgba(78, 130, 190, 0.1);
}

.membership-form-wrapper textarea,
.eme-form-wrapper textarea,
.eme-booking-form textarea,
.eme-membership-form textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* Checkbox Styling */
.membership-form-wrapper .checkbox,
.eme-form-wrapper .checkbox,
.eme-booking-form .checkbox,
.eme-membership-form .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.membership-form-wrapper .checkbox:hover,
.eme-form-wrapper .checkbox:hover,
.eme-booking-form .checkbox:hover,
.eme-membership-form .checkbox:hover {
    background: #f1f3f4;
    border-color: #4e82be;
}

.membership-form-wrapper .checkbox input[type="checkbox"],
.eme-form-wrapper .checkbox input[type="checkbox"],
.eme-booking-form .checkbox input[type="checkbox"],
.eme-membership-form .checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #4e82be;
    cursor: pointer;
}

.membership-form-wrapper .checkbox label,
.eme-form-wrapper .checkbox label,
.eme-booking-form .checkbox label,
.eme-membership-form .checkbox label {
    margin: 0;
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;
    line-height: 1.4;
}

/* Hint Text */
.membership-form-wrapper .hint,
.eme-form-wrapper .hint,
.eme-booking-form .hint,
.eme-membership-form .hint {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
    line-height: 1.4;
}

/* Muted Text */
.membership-form-wrapper .muted,
.eme-form-wrapper .muted,
.eme-booking-form .muted,
.eme-membership-form .muted {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Membership Info Box */
.membership-form-wrapper .membership-info,
.eme-form-wrapper .membership-info,
.eme-booking-form .membership-info,
.eme-membership-form .membership-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #4e82be;
}

.membership-form-wrapper .price-highlight,
.eme-form-wrapper .price-highlight,
.eme-booking-form .price-highlight,
.eme-membership-form .price-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4e82be;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* EME Required Field - Dezenter */
.eme-required-field {
    color: #dc3545 !important;
    font-weight: 500;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-left: 0.25rem;
}

/* EME Error Messages */
.eme-error,
.eme-validation-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
}

/* EME Success Messages */
.eme-success {
    color: #155724;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
}

/* ========================================
   EME Booking Form Specific Styles
   ======================================== */
.eme-booking-form-wrapper .event-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #4e82be;
}

.eme-booking-form-wrapper .event-info h3 {
    color: #4e82be;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.eme-booking-form-wrapper .event-details p {
    margin: 0.5rem 0;
    color: #2c3e50;
}

.eme-booking-form-wrapper .member-info {
    background: #e8f4fd;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #17a2b8;
}

.eme-booking-form-wrapper .member-info h3 {
    color: #17a2b8;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.eme-booking-form-wrapper .member-details p {
    margin: 0.5rem 0;
    color: #2c3e50;
}

.eme-booking-form-wrapper .form-section {
    margin-bottom: 2rem;
}

.eme-booking-form-wrapper .form-section h3 {
    color: #4e82be;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.eme-booking-form-wrapper select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 1rem;
    font-family: inherit;
    color: #2c3e50;
}

.eme-booking-form-wrapper .form-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

/* ========================================
   Login Page Styles
   ======================================== */
.login-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.login-wrapper {
    max-width: 550px;
    margin: 0 auto;
}

.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 3.5rem;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #4e82be 0%, #3a6ba5 100%);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    font-weight: 800;
    line-height: 1.2;
}

.login-header p {
    color: #6c757d;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
}

.login-form-container {
    margin-bottom: 2rem;
}

.login-form-container form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form-container label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: block;
}

.login-form-container input[type="text"],
.login-form-container input[type="password"] {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #f8f9fa;
    font-weight: 500;
}

.login-form-container input:focus {
    outline: none;
    border-color: #4e82be;
    box-shadow: 0 0 0 4px rgba(78, 130, 190, 0.15);
    background: white;
    transform: translateY(-1px);
}

.login-form-container .checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.login-form-container .checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.login-form-container .submit {
    background: linear-gradient(135deg, #4e82be 0%, #3a6ba5 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(78, 130, 190, 0.3);
}

.login-form-container .submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3a6ba5 0%, #2c5a8a 100%);
    transition: left 0.3s ease;
}

.login-form-container .submit:hover::before {
    left: 0;
}

.login-form-container .submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 130, 190, 0.4);
}

.login-form-container .submit span {
    position: relative;
    z-index: 1;
}

.login-links {
    text-align: center;
    margin-top: 1rem;
}

.forgot-password {
    color: #4e82be;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #3a6ba5;
    text-decoration: none;
}

.register-section {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.register-info {
    text-align: center;
}

.register-info h3 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.register-info p {
    color: #6c757d;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.already-logged-in {
    text-align: center;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.success-message i {
    color: #28a745;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #155724;
    margin: 0 0 0.5rem 0;
}

.success-message p {
    color: #155724;
    margin: 0;
    font-size: 1.1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Dashboard Page Styles
   ======================================== */
.dashboard-section {
    padding: 3rem 0;
    background: #f8f9fa;
    min-height: 80vh;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.welcome-message h1 {
    color: #2c3e50;
    margin: 0 0 0.75rem 0;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.welcome-message p {
    color: #6c757d;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
}

.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 0;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4e82be 0%, #3a6ba5 100%);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4e82be 0%, #3a6ba5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(78, 130, 190, 0.3);
}

.stat-content h3 {
    color: #4e82be;
    margin: 0 0 0.5rem 0;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.stat-content p {
    color: #6c757d;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.dashboard-content {
    display: grid;
    gap: 2rem;
}

.bookings-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2.5rem;
    border: 1px solid #e9ecef;
}

.section-header {
    display: block;
    align-items: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.filter-tabs {
    display: flex;
    gap: 0.75rem;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #6c757d;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.filter-tab:hover {
    background: rgba(78, 130, 190, 0.1);
    color: #4e82be;
}

.filter-tab.active {
    background: #4e82be;
    color: white;
    box-shadow: 0 2px 8px rgba(78, 130, 190, 0.3);
}

.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.booking-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.booking-card.upcoming {
    border-left: 4px solid #28a745;
}

.booking-card.past {
    border-left: 4px solid #6c757d;
    opacity: 0.8;
}

.booking-date {
    text-align: center;
    min-width: 60px;
}

.booking-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4e82be;
    line-height: 1;
}

.booking-date .month {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.booking-content {
    flex: 1;
}

.booking-content h3 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.booking-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.booking-meta span {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.booking-status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.booking-status.upcoming {
    background: #d4edda;
    color: #155724;
}

.booking-status.past {
    background: #e2e3e5;
    color: #6c757d;
}

.booking-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.no-bookings {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

.no-bookings-icon {
    font-size: 5rem;
    color: #4e82be;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.no-bookings h3 {
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.no-bookings p {
    color: #6c757d;
    margin: 0 0 2.5rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.quick-actions {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2.5rem;
    height: fit-content;
    border: 1px solid #e9ecef;
}

.quick-actions h3 {
    color: #2c3e50;
    margin: 0 0 2rem 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4e82be 0%, #3a6ba5 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.action-btn:hover::before {
    left: 0;
}

.action-btn:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 130, 190, 0.3);
    border-color: #4e82be;
}

.action-btn i,
.action-btn span {
    position: relative;
    z-index: 1;
}

.action-btn i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-section {
        padding: 2rem 0;
        min-height: 100vh;
    }
    
    .login-card {
        padding: 2rem;
        margin: 1rem;
        border-radius: 16px;
    }
    
    .login-header h1 {
        font-size: 2rem;
    }
    
    .login-header p {
        font-size: 1rem;
    }
    
    .login-form-container input[type="text"],
    .login-form-container input[type="password"] {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .login-form-container .submit {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .dashboard-section {
        padding: 1.5rem 0;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem;
    }
    
    .welcome-message h1 {
        font-size: 2rem;
    }
    
    .welcome-message p {
        font-size: 1rem;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-content h3 {
        font-size: 2.5rem;
    }
    
    .bookings-section {
        padding: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .filter-tabs {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .filter-tab {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
    
    .booking-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .booking-meta {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .booking-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .quick-actions {
        padding: 2rem;
    }
    
    .action-btn {
        padding: 1rem;
        gap: 1rem;
    }
    
    .no-bookings {
        padding: 3rem 1.5rem;
    }
    
    .no-bookings-icon {
        font-size: 4rem;
    }
    
    .no-bookings h3 {
        font-size: 1.3rem;
    }
    
    .no-bookings p {
        font-size: 1rem;
    }
}

/* ========================================
   Membership Form Buttons (Primary Style)
   ======================================== */
.membership-form-wrapper input[type="submit"],
.membership-form-wrapper button[type="submit"],
.membership-form-wrapper .eme-submit-button,
.membership-form-wrapper .btn-primary {
    background: linear-gradient(135deg, #4e82be 0%, #3a6ba5 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 130, 190, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.membership-form-wrapper input[type="submit"]:hover,
.membership-form-wrapper button[type="submit"]:hover,
.membership-form-wrapper .eme-submit-button:hover,
.membership-form-wrapper .btn-primary:hover {
    background: linear-gradient(135deg, #3a6ba5 0%, #2c5a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 130, 190, 0.4);
    color: white;
    text-decoration: none;
}

.membership-form-wrapper input[type="submit"]:active,
.membership-form-wrapper button[type="submit"]:active,
.membership-form-wrapper .eme-submit-button:active,
.membership-form-wrapper .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(78, 130, 190, 0.3);
}

.membership-form-wrapper input[type="submit"]:focus,
.membership-form-wrapper button[type="submit"]:focus,
.membership-form-wrapper .eme-submit-button:focus,
.membership-form-wrapper .btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(78, 130, 190, 0.3);
}

/* Loading State */
.membership-form-wrapper input[type="submit"]:disabled,
.membership-form-wrapper button[type="submit"]:disabled,
.membership-form-wrapper .eme-submit-button:disabled,
.membership-form-wrapper .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Secondary Buttons */
.membership-form-wrapper .btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.membership-form-wrapper .btn-secondary:hover {
    background: #5a6268;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Button Container */
.membership-form-wrapper .button-container {
    text-align: center;
    margin-top: 2rem;
}

/* ========================================
   Mobile Responsive - EME Forms
   ======================================== */
@media (max-width: 768px) {
    .membership-form-wrapper,
    .eme-form-wrapper,
    .eme-booking-form,
    .eme-membership-form {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 16px;
    }
    
    .membership-form-wrapper .card,
    .eme-form-wrapper .card,
    .eme-booking-form .card,
    .eme-membership-form .card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .membership-form-wrapper .grid-2,
    .eme-form-wrapper .grid-2,
    .eme-booking-form .grid-2,
    .eme-membership-form .grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .membership-form-wrapper input[type="submit"],
    .membership-form-wrapper button[type="submit"],
    .membership-form-wrapper .eme-submit-button,
    .membership-form-wrapper .btn-primary,
    .eme-form-wrapper input[type="submit"],
    .eme-form-wrapper button[type="submit"],
    .eme-form-wrapper .eme-submit-button,
    .eme-form-wrapper .btn-primary,
    .eme-booking-form input[type="submit"],
    .eme-booking-form button[type="submit"],
    .eme-booking-form .eme-submit-button,
    .eme-booking-form .btn-primary,
    .eme-membership-form input[type="submit"],
    .eme-membership-form button[type="submit"],
    .eme-membership-form .eme-submit-button,
    .eme-membership-form .btn-primary {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .membership-form-wrapper .card h2,
    .eme-form-wrapper .card h2,
    .eme-booking-form .card h2,
    .eme-membership-form .card h2 {
        font-size: 1.2rem;
    }
    
    .membership-form-wrapper .checkbox,
    .eme-form-wrapper .checkbox,
    .eme-booking-form .checkbox,
    .eme-membership-form .checkbox {
        padding: 0.75rem;
        gap: 0.5rem;
    }
}

/* ========================================
   Header Login/Anmelde-Zeile
   ======================================== */
.header-top {
    background-color: #2c3e50;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.header-top-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.user-info,
.login-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.welcome-text {
    font-weight: 500;
    color: #ecf0f1;
}

.user-link,
.logout-link,
.login-link,
.register-link {
    color: white;
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.user-link:hover,
.logout-link:hover,
.login-link:hover,
.register-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
}

.register-link {
    color: white;
    font-weight: 600;
}

.register-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Mobile Anpassungen für Header-Top */
@media (max-width: 768px) {
    .header-top-content {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .user-info,
    .login-info {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .welcome-text {
        font-size: 0.8rem;
    }
    
    .user-link,
    .logout-link,
    .login-link,
    .register-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
}

/* ========================================
   Events Overview Page Styles
   ======================================== */
.events-overview-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.events-calendar-section,
.events-timeline-section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin:3rem 0  2rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #08436f;
    margin-bottom: 1rem;
    font-family: 'Montserrat Alternates', sans-serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin: 0;
}

.calendar-grid,
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Event-Overview spezifische Styles */
.events-overview-section .event-title {
    font-size: 1.2rem !important;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.events-overview-section .event-description {
    padding: 0.25rem 0;
    margin-bottom: 0.5rem;
}

.events-cta-section {
    background: linear-gradient(135deg, #4e82be 0%, #08436f 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat Alternates', sans-serif;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Timeline Month Groups */
.timeline-month-group {
    margin-bottom: 2rem;
}

.timeline-month-header {
    font-size: 1.5rem;
    color: #08436f;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4e82be;
    font-family: 'Montserrat Alternates', sans-serif;
}

/* No Events Message */
.no-events-message {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.no-events-message p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.no-events-message p:last-child {
    margin-bottom: 0;
    font-style: italic;
}

/* ========================================
   Calendar Grid Styles
   ======================================== */
.calendar-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.calendar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.calendar-header {
    background: linear-gradient(135deg, #4e82be, #08436f);
    padding: 0.75rem;
    text-align: center;
}

.calendar-date {
    color: white;
    display: flex;
    align-items: baseline;
    justify-content: left;
    gap: 0.5rem;
    text-align: left;
    flex-wrap: nowrap;
}

.date-day {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 0.9;
    font-family: 'Montserrat Alternates', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.date-day:not(:empty)::after {
    content: ".";
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 0.9;
    font-family: 'Montserrat Alternates', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* WordPress Block Image - Full Width */
.wp-block-image {
    width: 100%;
}

.wp-block-image img {
    width: 100%;
    height: auto;
}

/* Custom Login Form Button */
.login-submit input[type="submit"],
.login-submit .button.button-primary,
#wp-submit {
    background: linear-gradient(135deg, #4e82be, #08436f);
    color: white !important;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 130, 190, 0.3);
}

.login-submit input[type="submit"]:hover,
.login-submit .button.button-primary:hover,
#wp-submit:hover {
    background: linear-gradient(135deg, #08436f, #4e82be);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 130, 190, 0.4);
    color: white !important;
}

/* WordPress Block Button - Primary Style */
.wp-block-button__link {
    background: linear-gradient(135deg, #4e82be, #08436f);
    color: white !important;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 130, 190, 0.3);
}

.wp-block-button__link:hover {
    background: linear-gradient(135deg, #08436f, #4e82be);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 130, 190, 0.4);
    color: white !important;
    text-decoration: none !important;
}

.wp-block-button__link:visited {
    color: white !important;
}

.date-month-year {
    display: inline-block;
    gap: 0.5rem;
    flex-shrink: 0;
}

.date-month {
    display: inline-block;
    padding-right: 0.4em;
    font-size: 1rem;
    font-weight:500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.calendar-year {
    font-size: 1rem;
    display: inline-block;
    font-weight: 600;
    line-height: 1;
}

.calendar-content {
    padding: 1rem;
}

.event-title {
    margin-bottom: 0.5rem;
    color: #08436f;
    font-size: 1.4em;
    font-weight: 600;
    font-family: 'Montserrat Alternates', sans-serif;
}

/* Spezifische Regel für event-title innerhalb calendar-content - höhere Spezifität */
.calendar-card .calendar-content .event-title {
    color: #08436f;
    background: none;
    text-shadow: none;
    font-weight: 600;
}

/* Noch spezifischer für EME und Gutenberg */
.calendar-grid .calendar-card .calendar-content .event-title {
    color: #08436f;
    background: none;
    text-shadow: none;
    font-weight: 600;
}

.event-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.event-meta {
    margin-bottom: 1.5rem;
}

.event-meta span {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.event-meta i {
    margin-right: 0.5rem;
    color: #4e82be;
}

/* ========================================
   Timeline Grid Styles
   ======================================== */
.timeline-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.timeline-month {
    background: #4e82be;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat Alternates', sans-serif;
}

.timeline-content {
    padding: 1.5rem;
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
    font-family: 'Montserrat Alternates', sans-serif;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.timeline-content .event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-content .event-meta span {
    font-size: 0.9rem;
    color: #555;
}

/* ========================================
   Event Single Page Styles
   ======================================== */
.event-hero-section {
    background: linear-gradient(135deg, #4e82be 0%, #08436f 100%);
    padding: 4rem 0;
    color: white;
}

/* Event Detail Hero Styles */
.event-detail-hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
}

.event-hero-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.event-day {
    font-size: 3rem;
    font-weight: 700;
    color: white !important;
    line-height: 1;
    font-family: 'Montserrat Alternates', sans-serif;
}

.event-month {
    font-size: 1.2rem;
    font-weight: 600;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-year {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
}

.event-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat Alternates', sans-serif;
}

.event-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.event-meta-bar span {
    color: white !important;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-meta-bar i {
    color: #badeea !important;
    font-size: 1rem;
}

/* ========================================
   Password Reset Page Styles
   ======================================== */
.password-reset-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.password-reset-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.password-reset-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.password-reset-header {
    text-align: center;
    margin-bottom: 2rem;
}

.password-reset-header h1 {
    color: #08436f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat Alternates', sans-serif;
}

.password-reset-header p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.password-reset-form-container {
    margin-bottom: 2rem;
}

.password-reset-form-container form {
    margin-bottom: 1.5rem;
}

.password-reset-form-container label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.password-reset-form-container input[type="text"],
.password-reset-form-container input[type="email"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.password-reset-form-container input[type="text"]:focus,
.password-reset-form-container input[type="email"]:focus {
    outline: none;
    border-color: #4e82be;
    box-shadow: 0 0 0 4px rgba(78, 130, 190, 0.15);
    background: white;
}

.password-reset-form-container input[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, #4e82be 0%, #3a6ba5 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.password-reset-form-container input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 130, 190, 0.4);
}

.success-message,
.info-message {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #4e82be;
    margin-bottom: 2rem;
}

.success-message i,
.info-message i {
    font-size: 3rem;
    color: #4e82be;
    margin-bottom: 1rem;
}

.success-message h3,
.info-message h3 {
    color: #08436f;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat Alternates', sans-serif;
}

.success-message p,
.info-message p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.password-reset-links {
    text-align: center;
    margin-top: 2rem;
}

.back-to-login {
    color: #4e82be;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.back-to-login:hover {
    color: #3a6ba5;
    text-decoration: none;
}

.back-to-login i {
    font-size: 0.9rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.action-buttons .btn i {
    font-size: 0.9rem;
}

/* ========================================
   Event Quick Info Styles
   ======================================== */
.event-quick-info {
    background: #f8f9fa;

}

.event-quick-info h4 {
    color: #08436f;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.quick-info-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 2rem 0;
}

.quick-info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    line-height: 1.6;
}

.quick-info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.quick-info-list i {
    color: #4e82be !important;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.quick-info-list span {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
    flex: 1;
}

.event-details-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.event-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-content h2,
.event-content h3 {
    color: #08436f;
    font-family: 'Montserrat Alternates', sans-serif;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.event-description {
    margin-bottom: 2rem;
}

.kursleiter-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.kursleiter-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4e82be;
}

.kursleiter-avatar {
    font-size: 4rem;
    color: #4e82be;
}

.kursleiter-details h4 {
    margin: 0 0 0.5rem 0;
    color: #08436f;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 1.3rem;
}

.kursleiter-details .role {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.kursleiter-details .email {
    color: #4e82be;
    text-decoration: none;
    font-size: 0.9rem;
}

.kursleiter-details .email:hover {
    text-decoration: underline;
}

.booking-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 2rem;
}

.booking-card h3 {
    color: #08436f;
    font-family: 'Montserrat Alternates', sans-serif;
    margin-bottom: 1.5rem;
}

.booking-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.info-item i {
    font-size: 1.5rem;
    color: #4e82be;
    width: 30px;
    text-align: center;
}

.info-details strong {
    display: block;
    color: #08436f;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.info-details span {
    color: #6c757d;
    font-size: 0.95rem;
}

.booking-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

/* ========================================
   Hero Block Styles
   ======================================== */
.hero-content {
    color: white;
}

.hero-title {
    color: white !important;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat Alternates', sans-serif;
}

.hero-subtitle {
    color: white !important;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons .btn-hero {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid white;
    color: white !important;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-hero:hover {
    background: white;
    color: #4e82be !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-hero i {
    margin-right: 0.5rem;
}

/* ========================================
   Event Hero Styles
   ======================================== */
.event-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    color: white;
}

.event-hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.event-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat Alternates', sans-serif;
}

.event-meta-hero {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.event-meta-hero span {
    font-size: 1.1rem;
    opacity: 0.9;
}

.event-meta-hero i {
    margin-right: 0.5rem;
    color: #badeea;
}

.event-excerpt {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* ========================================
   Kursleiter Styles
   ======================================== */
.kursleiter-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4e82be;
}

.kursleiter-avatar i {
    font-size: 3rem;
    color: #4e82be;
}

.kursleiter-details h4 {
    margin: 0 0 0.25rem 0;
    color: #08436f;
    font-family: 'Montserrat Alternates', sans-serif;
}

.kursleiter-details p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* ========================================
   Member Events Page Styles
   ======================================== */
.user-info-section {
    background: linear-gradient(135deg, #4e82be 0%, #08436f 100%);
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.user-info-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
}

.user-avatar {
    font-size: 5rem;
}

.user-details h2 {
    margin: 0 0 0.5rem 0;
    font-family: 'Montserrat Alternates', sans-serif;
}

.user-details p {
    margin: 0;
    opacity: 0.9;
}

.my-events-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.events-timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.no-bookings-message {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.no-bookings-message i {
    font-size: 4rem;
    color: #4e82be;
    margin-bottom: 1.5rem;
}

.no-bookings-message h3 {
    color: #08436f;
    font-family: 'Montserrat Alternates', sans-serif;
    margin-bottom: 1rem;
}

.no-bookings-message p {
    color: #6c757d;
    margin-bottom: 2rem;
}

/* ========================================
   Admin Bookings Page Styles
   ======================================== */
.admin-header {
    background: linear-gradient(135deg, #4e82be 0%, #08436f 100%);
    padding: 3rem 0;
    color: white;
}

.admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-tools {
    display: flex;
    gap: 1rem;
}

.admin-stats-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #4e82be;
}

.stat-card i {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    color: #08436f;
    font-family: 'Montserrat Alternates', sans-serif;
}

.stat-card p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.event-filters {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.filter-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-group label {
    font-weight: 600;
    color: #08436f;
    min-width: 100px;
}

.filter-group select {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
}

.admin-events-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bookings-table-section {
    padding: 4rem 0;
    background: white;
}

.bookings-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.bookings-table table {
    width: 100%;
    border-collapse: collapse;
}

.bookings-table th {
    background: #08436f;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-family: 'Montserrat Alternates', sans-serif;
}

.bookings-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.bookings-table tr:last-child td {
    border-bottom: none;
}

.bookings-table tr:hover {
    background: #f8f9fa;
}

/* ========================================
   Member Bookings Styles
   ======================================== */
.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    border-left: 4px solid #4e82be;
}

.booking-event h4 {
    margin: 0 0 0.5rem 0;
    color: #08436f;
    font-family: 'Montserrat Alternates', sans-serif;
}

.booking-date,
.booking-location {
    margin: 0 0 0.25rem 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* ========================================
   Admin Event Cards
   ======================================== */
.admin-event-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #4e82be;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.event-header h3 {
    margin: 0;
    color: #08436f;
    font-family: 'Montserrat Alternates', sans-serif;
}

.event-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.event-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.stat i {
    color: #4e82be;
}

.event-actions {
    display: flex;
    gap: 1rem;
}

/* ========================================
   Related Events
   ======================================== */
.related-event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-event-card:hover {
    transform: translateY(-3px);
}

.related-event-card .event-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-event-card .event-content {
    padding: 1.5rem;
}

.related-event-card h4 {
    margin: 0 0 0.5rem 0;
    color: #08436f;
    font-family: 'Montserrat Alternates', sans-serif;
}

.related-event-card .event-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.related-event-card .event-excerpt {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* ========================================
   Button Styles
   ======================================== */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #4e82be, #08436f);
    color: white !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 130, 190, 0.4);
    color: white !important;
    text-decoration: none;
}

/* Block Editor Button Primary - Primary Styling im Editor */
.btn-primary.rich-text,
.btn-primary[class*="rich-text"] {
    color: white !important;
    background: linear-gradient(135deg, #4e82be, #08436f) !important;
    border: none !important;
    padding: 15px 40px !important;
    border-radius: 25px !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
}

.btn-outline {
    background: transparent;
    color: #4e82be;
    border: 2px solid #4e82be;
}

.btn-outline:hover {
    background: #4e82be;
    color: white;
    text-decoration: none;
}

.btn-sm {
    padding: 6px 15px;
    font-size: 0.85rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .calendar-grid,
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .event-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-hero-text h1 {
        font-size: 2rem;
    }
    
    .booking-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .event-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .timeline-content .event-meta {
        flex-direction: column;
    }
    
    .event-details-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        position: static;
    }
    
    .user-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .events-timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-header-content {
        flex-direction: column;
    }
}

/* ========================================
   Booking Status Card & Modal Styles
   ======================================== */

/* Booking Status Card */
.booking-status-card {
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.booking-status-card .success-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.booking-status-card h3 {
    color: #155724;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.booking-status-card p {
    color: #155724;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-cancel-booking {
    margin-top: 1rem;
}

/* Modal Styles */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    position: relative;
    background: white;
    max-width: 500px;
    margin: 10% auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #08436f;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6c757d;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.modal-close:hover {
    color: #dc3545;
}

.modal-body {
    padding: 2rem 1.5rem;
}

.modal-body p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

.modal-body .warning-text {
    color: #856404;
    background: #fff3cd;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
}

.modal-body .warning-text i {
    margin-right: 0.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.modal-footer .btn {
    min-width: 120px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        max-width: 95%;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .modal-footer .btn:last-child {
        margin-bottom: 0;
    }
        gap: 1rem;
        text-align: center;
    }
    
    .admin-tools {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .bookings-table {
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .calendar-card,
    .timeline-card {
        margin-bottom: 1rem;
    }
    
    .calendar-content,
    .timeline-content {
        padding: 1rem;
    }
    
    .calendar-date {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .date-day {
        font-size: 2rem;
    }
    
    .date-month-year {
        align-items: center;
    }
    
    .event-title {
        font-size: 1.2rem;
    }
}

/* ========================================
   EME Message Styles - Corporate Design
   ======================================== */
.eme-message-success,
.eme-member-message-success {
    background: linear-gradient(135deg, #4e82be, #08436f) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 1rem 1.5rem !important;
    margin: 1rem 0 !important;
    box-shadow: 0 4px 15px rgba(8, 67, 111, 0.2) !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.eme-message-success::before,
.eme-member-message-success::before {
    content: '✓' !important;
    position: absolute !important;
    left: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    color: white !important;
}

.eme-message-success .eme-member-message,
.eme-member-message-success .eme-member-message {
    background: none !important;
    color: white !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

/* Error Messages */
.eme-message-error,
.eme-member-message-error {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 1rem 1.5rem !important;
    margin: 1rem 0 !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2) !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.eme-message-error::before,
.eme-member-message-error::before {
    content: '⚠' !important;
    position: absolute !important;
    left: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    color: white !important;
}

/* Info Messages */
.eme-message-info,
.eme-member-message-info {
    background: linear-gradient(135deg, #17a2b8, #138496) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 1rem 1.5rem !important;
    margin: 1rem 0 !important;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.2) !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.eme-message-info::before,
.eme-member-message-info::before {
    content: 'ℹ' !important;
    position: absolute !important;
    left: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    color: white !important;
}

/* Warning Messages */
.eme-message-warning,
.eme-member-message-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800) !important;
    color: #212529 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 1rem 1.5rem !important;
    margin: 1rem 0 !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2) !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.eme-message-warning::before,
.eme-member-message-warning::before {
    content: '⚠' !important;
    position: absolute !important;
    left: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    color: #212529 !important;
}

/* Responsive Message Styles */
@media (max-width: 768px) {
    .eme-message-success,
    .eme-member-message-success,
    .eme-message-error,
    .eme-member-message-error,
    .eme-message-info,
    .eme-member-message-info,
    .eme-message-warning,
    .eme-member-message-warning {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
        margin: 0.75rem 0 !important;
    }
    
    .eme-message-success::before,
    .eme-member-message-success::before,
    .eme-message-error::before,
    .eme-member-message-error::before,
    .eme-message-info::before,
    .eme-member-message-info::before,
    .eme-message-warning::before,
    .eme-member-message-warning::before {
        left: 0.75rem !important;
        font-size: 1rem !important;
    }
}

/* ========================================
   EME Buchungsformular Styles
   ======================================== */
.eme-rsvp-form {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin: 1rem 0;
}

.eme-rsvp-form label {
    display: inline-block !important;
    font-weight: 500 !important;
    color: #08436f !important;
    margin-right: 0.5rem !important;
    margin-bottom: 0 !important;
    font-size: 0.95rem !important;
}

.eme-rsvp-form input[type="text"],
.eme-rsvp-form input[type="email"] {
    background: white !important;
    border: 2px solid #e9ecef !important;
    border-radius: 6px !important;
    padding: 0.75rem !important;
    font-size: 1rem !important;
    color: #333 !important;
    width: 100% !important;
    max-width: 300px !important;
    margin-bottom: 0.5rem !important;
    transition: border-color 0.3s ease !important;
}

.eme-rsvp-form input[type="text"]:focus,
.eme-rsvp-form input[type="email"]:focus {
    outline: none !important;
    border-color: #4e82be !important;
    box-shadow: 0 0 0 3px rgba(78, 130, 190, 0.1) !important;
}

.eme-rsvp-form input[readonly] {
    background: transparent !important;
    border: none !important;
    color: #333 !important;
    font-weight: 500 !important;
    cursor: default !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    font-size: 1rem !important;
    display: inline !important;
    width: auto !important;
    max-width: none !important;
}

.eme-required-field {
    color: #dc3545 !important;
    font-size: 0.8rem !important;
    margin-top: 0.25rem !important;
    display: block !important;
}

/* EME Required Field auf Event-Detail-Seite ausblenden */
.single-event .eme-required-field,
.single-eme_event .eme-required-field,
.single .eme-required-field,
.booking-section .eme-required-field {
    display: none !important;
}

.eme_submit_button {
    background: linear-gradient(135deg, #4e82be, #08436f) !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    margin-top: 1rem !important;
    width:auto;
    max-width: 500px !important;
}

.eme_submit_button:hover {
    background: linear-gradient(135deg, #08436f, #4e82be) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(8, 67, 111, 0.3) !important;
}

.eme_submit_button:active {
    transform: translateY(0) !important;
}

/* Plätze-Zeile verstecken */
.eme-rsvp-form input[name*="bookedSeats"] {
    display: none !important;
}

.eme-rsvp-form br:has(+ input[name*="bookedSeats"]) {
    display: none !important;
}

/* "Plätze*:" Text auf Event-Detail-Seite verstecken - wird via JavaScript gehandhabt */
.single-event .eme-rsvp-form .hidden-plaetze-label,
.single-eme_event .eme-rsvp-form .hidden-plaetze-label {
    display: none !important;
}

/* Honeypot verstecken */
#honeypot_check {
    display: none !important;
}

/* Loading GIF */
.eme-hidden {
    display: none !important;
}

/* Responsive Buchungsformular */
@media (max-width: 768px) {
    .eme-rsvp-form {
        padding: 1rem;
    }
    
    .eme-rsvp-form input[type="text"],
    .eme-rsvp-form input[type="email"],
    .eme_submit_button {
        max-width: 100% !important;
    }
}

/* ========================================
   Passwort-Reset Formular Styles
   ======================================== */
.password-reset-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 2rem auto;
    text-align: center;
}

.password-reset-form {
    margin-bottom: 1.5rem;
}

.password-reset-form .form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.password-reset-form .form-group label {
    display: block;
    color: #08436f;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.password-reset-form .form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.password-reset-form .form-control:focus {
    outline: none;
    border-color: #4e82be;
    box-shadow: 0 0 0 3px rgba(78, 130, 190, 0.1);
}

.password-reset-form .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #4e82be, #08436f);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.password-reset-form .btn:hover {
    background: linear-gradient(135deg, #08436f, #4e82be);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(8, 67, 111, 0.3);
}

.login-links {
    margin-top: 1rem;
}

.back-to-login {
    color: #4e82be;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-login:hover {
    color: #08436f;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .password-reset-form-container {
        margin: 1rem;
        padding: 1.5rem;
    }
}

/* ========================================
   EME Override Styles
   ======================================== */
.eme_events_list,
.eme_events_list .eme_event {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.eme_events_list .eme_event .event_title {
    display: none !important;
}

.eme_events_list .eme_event .event_date {
    display: none !important;
}

.eme_events_list .eme_event .event_time {
    display: none !important;
}

.eme_events_list .eme_event .event_location {
    display: none !important;
}

.eme_events_list .eme_event .event_description {
    display: none !important;
}

/* Hide default EME styling and use our custom formats */
.eme_events_list .eme_event > * {
    display: none !important;
}

.eme_events_list .eme_event .calendar-card,
.eme_events_list .eme_event .timeline-card,
.eme_events_list .eme_event .admin-event-card,
.eme_events_list .eme_event .related-event-card {
    display: block !important;
}

/* ========================================
   Payment Success Page Styles
   ======================================== */
.payment-success-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    min-height: 80vh;
}

.payment-success-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-success-section .success-header {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-success-section .success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 24px rgba(72, 187, 120, 0.3);
}

.payment-success-section .success-icon i {
    font-size: 3rem;
    color: white;
}

.payment-success-section .success-header h1 {
    color: #08436f;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    font-family: 'Montserrat Alternates', sans-serif;
}

.payment-success-section .success-header p {
    color: #6c757d;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.6;
}

.payment-success-section .success-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.payment-success-section .success-card h2 {
    color: #08436f;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    font-family: 'Montserrat Alternates', sans-serif;
}

.payment-success-section .info-box-green {
    background-color: #f0fff4;
    padding: 1.5rem;
    border-left: 4px solid #48bb78;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.payment-success-section .info-box-green p {
    margin: 0;
    color: #2d3748;
    line-height: 1.8;
    font-size: 1.1rem;
}

.payment-success-section .info-box-blue {
    background-color: #ebf8ff;
    padding: 1.5rem;
    border-left: 4px solid #3182ce;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.payment-success-section .info-box-blue h3 {
    color: #1a365d;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.payment-success-section .info-box-blue ul {
    margin: 0;
    padding-left: 20px;
    color: #2d3748;
    line-height: 1.8;
}

.payment-success-section .info-box-blue ul li {
    margin: 0 0 10px 0;
}

.payment-success-section .info-box-orange {
    background-color: #fef5e7;
    padding: 1.5rem;
    border-left: 4px solid #f6ad55;
    border-radius: 8px;
}

.payment-success-section .info-box-orange h3 {
    color: #1a365d;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.payment-success-section .info-box-orange .payment-info-box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.payment-success-section .info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.payment-success-section .info-row:last-child {
    border-bottom: none;
}

.payment-success-section .info-row .label {
    font-weight: 600;
    color: #2d3748;
}

.payment-success-section .info-row .value {
    color: #4a5568;
}

.payment-success-section .info-row .value.highlight {
    color: #48bb78;
    font-weight: bold;
}

.payment-success-section .welcome-box {
    background: linear-gradient(135deg, #08436f, #4e82be);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(8, 67, 111, 0.3);
    text-align: center;
    margin-bottom: 2rem;
}

.payment-success-section .welcome-box h3 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Montserrat Alternates', sans-serif;
}

.payment-success-section .welcome-box p {
    margin: 0;
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.payment-success-section .action-section {
    text-align: center;
    margin: 2rem 0;
}

.payment-success-section .action-section p {
    color: #2d3748;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-success-section .action-info {
    background-color: #fef5e7;
    padding: 1.5rem;
    border-left: 4px solid #f6ad55;
    border-radius: 8px;
    margin-top: 2rem;
}

.payment-success-section .action-info h3 {
    color: #1a365d;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.payment-success-section .action-info p {
    margin: 0;
    color: #2d3748;
    line-height: 1.8;
}

.payment-success-section .footer-text {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.payment-success-section .footer-text p {
    color: #6c757d;
    margin: 0 0 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-success-section {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .payment-success-section .success-header h1 {
        font-size: 2rem;
    }
    
    .payment-success-section .success-header p {
        font-size: 1rem;
    }
    
    .payment-success-section .success-card {
        padding: 2rem 1.5rem;
    }
    
    .payment-success-section .success-card h2 {
        font-size: 1.5rem;
    }
    
    .payment-success-section .welcome-box {
        padding: 2rem 1.5rem;
    }
    
    .payment-success-section .welcome-box h3 {
        font-size: 1.5rem;
    }
    
    .payment-success-section .welcome-box p {
        font-size: 1rem;
    }
}

/* ========================================
   EME Required Field Indicator
   ======================================== */
.eme-required-field {
    display: none !important;
    visibility: hidden !important;
}

/* ========================================
   EME Form Checkbox Layout
   ======================================== */
.field:has(input[type="checkbox"]) {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.field:has(input[type="checkbox"]) input[type="checkbox"] {
    display: inline-block !important;
    margin-right: 0 !important;
    vertical-align: top !important;
    margin-top: 3px !important;
    flex-shrink: 0;
}

.field:has(input[type="checkbox"]) label {
    display: inline !important;
    flex: 1;
}
