body {
    background-color: #000000;
    color: #ffffff;
}

.core-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer {
    clear: both;
    text-align: center;
    padding: 20px 0;
    color: #cccccc;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding:0% 20px;
    float: left;
}

.event-card {
    border-left: 4px solid #0d6efd;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #1a1a1a;
    border-color: #444444;
    color: #ffffff;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
    background-color: #2a2a2a;
}

.event-time {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 500;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.event-location {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-top: 0.5rem;
}

.event-description {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 0.5rem;
    max-height: 100px;
    overflow-y: auto;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.error-alert {
    display: none;
    background-color: #3a0000;
    border-color: #8b0000;
    color: #ff6666;
}

.events-list {
    display: none;
}

.events-list.active {
    display: block;
}

/* Carousel Styles */
.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.carousel-track {
    position: relative;
    width: 100%;
    display: flex;
    transition: all 0.3s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: bottom;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit:fill;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-btn {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: #ffffff;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.6);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

/* Music Player Styles */
.music-player {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.music-track {
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #4db8ff;
    background-color: #1a1a1a;
    border-color: #444444;
}

.music-track h4 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.music-track audio {
    width: 100%;
    height: 40px;
}

