/* CSS for Swiper.js Carousel */
.swiper-container {
    width: 100%;
    height: auto;
}

.swiper-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px !important;
    /*background: #f9f9f9;*/
    border: 1px solid #ddd;
    border-radius: 8px;
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 150px !important;
    margin-right: 20px !important;
}
.artist-image img {
    max-width: 100%;
    border-radius: 50%;
    margin-bottom: 10px;
}

.artist-info {
    margin-top: 10px;
}

.artist-name {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.event-count {
    font-size: 14px;
    color: #666;
}


.short-title {
    /*margin-bottom: 0px;*/
    /*font-size: 1rem;*/
    /*color: black;*/
    text-transform: capitalize;
}








/* Artist Search Shortcode Styles */
.artist-search-wrapper {
    margin: 0 auto;
    max-width: 600px;
}

.search-form-wrapper {
    margin-bottom: 20px;
    text-align: center;
}

.search-artist-results {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.artist-result-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    text-align: center;
}

.artist-result-item a {
    text-decoration: none;
    color: #333;
}

.artist-result-item a:hover {
    color: #0073aa;
}

.artist-name {
    font-size: 20px;
    font-weight: bold;
}

.artist-description {
    font-size: 14px;
    color: #666;
}

.no-results-message {
    font-size: 16px;
    color: #999;
    text-align: center;
    margin-top: 30px;
}

