/* Urlaubs-Overlay Styling */
.wall-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.wall-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    animation: wallFadeIn 0.3s ease-out;
}

.wall-overlay-content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    min-width: 320px;
    width: 90%;
    pointer-events: auto;
    animation: wallSlideIn 0.4s ease-out;
    overflow: hidden;
}

.wall-overlay-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.wall-overlay-icon {
    font-size: 28px;
}

.wall-overlay-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.wall-overlay-body {
    padding: 24px;
}

.wall-overlay-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 16px 0;
    white-space: pre-wrap;
}

.wall-overlay-dates {
    font-size: 14px;
    color: #888888;
    margin: 0;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.wall-overlay-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    pointer-events: auto;
    z-index: 10;
}

.wall-overlay-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

@keyframes wallFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes wallSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Anpassung */
@media (max-width: 600px) {
    .wall-overlay-content {
        width: 95%;
        min-width: auto;
    }
    
    .wall-overlay-header {
        padding: 16px 20px;
    }
    
    .wall-overlay-body {
        padding: 20px;
    }
    
    .wall-overlay-text {
        font-size: 15px;
    }
}