/* Showtime Events Plugin Styles */

.showtime-events-container {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.showtime-events-title {
    font-size: 4rem;
    font-weight: bold;
    text-align: left;
    margin-bottom: 40px;
    letter-spacing: -2px;
    line-height: 1;
    color: #ffffff;
}

.showtime-event {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    width: 50%;
    justify-content: center;
}
.showtime-event a{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    justify-content:center;
}
.showtime-event a:hover{
    text-decoration:none !important;
    opacity:0.8;
}

.showtime-event:last-child {
    border-bottom: none;
}

.showtime-event-image {
    flex-shrink: 0;
}

.showtime-event-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.showtime-event-info {
    flex-grow: 1;
}

.showtime-event-artist {
    font-size: 1.8rem !important;
    font-weight: bold;
    margin: 10px 0 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.showtime-event-details {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
}

.showtime-event-location {
    color: #a81f1f;
}

.showtime-event-separator {
    margin: 0 5px;
    color: #666666;
}

.showtime-event-date {
    color: #cccccc;
}

/* Responsive styles */
@media (max-width: 768px) {
    .showtime-events-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .showtime-event {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .showtime-event-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .showtime-event-image img {
        width: 150px;
        height: 150px;
    }
    
    .showtime-event-artist {
        font-size: 1.8rem;
    }
    
    .showtime-event-details {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .showtime-events-container {
        padding: 20px 15px;
    }
    
    .showtime-events-title {
        font-size: 2rem;
    }
    
    .showtime-event-artist {
        font-size: 1.5rem;
    }
    
    .showtime-event-details {
        font-size: 0.9rem;
    }
}

/* Tab Navigation Styles */
.showtime-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    /* border-bottom: 2px solid #333333; */
    padding-bottom: 0;
    justify-content: space-between;
}

.showtime-tab-button {
    background: none;
    border: none;
    color: #666666;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.showtime-tab-button:hover {
    color: #ffffff;
}

.showtime-tab-button.active {
    color: #a81f1f;
    border-bottom-color: #a81f1f;
}

/* Tab Content */
.showtime-tabs-content {
    position: relative;
}

.showtime-tab-pane {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
}

.showtime-tab-pane.active {
    display: flex;
}

/* Artist count badge */
.showtime-tab-button .artist-count {
    display: inline-block;
    background-color: #a81f1f;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 10px;
}

/* Responsive tab styles */
@media (max-width: 768px) {
    .showtime-tabs-nav {
        gap: 5px;
    }
    
    .showtime-tab-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .showtime-tabs-nav {
        flex-direction: column;
        border-bottom: none;
    }
    
    .showtime-tab-button {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #333333;
        margin-bottom: 0;
    }
    
    .showtime-tab-button.active {
        background-color: #111111;
    }
}