.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    min-height: 80vh;
    padding: 40px 20px;
}

/* Enhanced title styling */
.main-content h1 {
    font-size: 3rem;
    color: #000;
    margin-bottom: 40px;
    text-shadow: 
        2px 2px 0px rgba(255,255,255,0.8),
        4px 4px 0px rgba(0,0,0,0.3);
    position: relative;
    z-index: 10;
    text-align: center;
}

/* No Events Message - Skeuomorphic */
.no-events-message {
    background: linear-gradient(145deg, #f9fafb, #f3f4f6);
    border: 2px solid #d4d4d4;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 
        0 6px 12px rgba(0,0,0,0.12),
        inset 0 2px 4px rgba(255,255,255,0.8),
        inset 0 -2px 4px rgba(0,0,0,0.08);
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.no-events-message::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5), rgba(255,255,255,0.9));
    border-radius: 16px 16px 0 0;
}

.no-events-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.7;
}

.no-events-message h2 {
    font-size: 2rem;
    color: #374151;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.no-events-message p {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

/* Removed all chat-related styles */

/* Removed floating particles styles */

/* Glowing border effect */
.main-content {
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255,255,255,0.6), rgba(0,0,0,0.06));
    background-size: 100% 100%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}

/* Removed glowingBorder animation */

/* Scanlines effect */
.main-content {
    position: relative;
}

.main-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-content h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .no-events-message {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .no-events-icon {
        font-size: 3rem;
    }
    
    .no-events-message h2 {
        font-size: 1.5rem;
    }
    
    .no-events-message p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-content h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .no-events-message {
        padding: 25px 15px;
    }
    
    .no-events-icon {
        font-size: 2.5rem;
    }
    
    .no-events-message h2 {
        font-size: 1.3rem;
    }
    
    .no-events-message p {
        font-size: 0.9rem;
    }
}

