/* Styling for the Musician Carousel */
.msf-musician-carousel-container {
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px; /* Adjust as needed */
}

.msf-musician-carousel .slick-slide {
    text-align: center;
    padding: 15px;
}

.msf-musician-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.msf-musician-item:hover {
    transform: translateY(-5px);
}

.msf-musician-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #f0f0f0;
}

.msf-musician-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #333;
}

.msf-musician-details-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.msf-musician-details-btn:hover {
    background-color: #45a049;
}

/* Modal (Pop-up) Styles */
.msf-musician-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.msf-musician-modal.active {
    display: flex;
}

.msf-musician-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: left;
}

.msf-musician-modal-close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.msf-musician-modal-close:hover,
.msf-musician-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.msf-modal-image {
    display: block;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    border: 3px solid #f0f0f0;
}

.msf-modal-description p,
.msf-musician-modal-content p {
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Slick Carousel overrides for navigation */
.slick-prev:before, .slick-next:before {
    color: #4CAF50 !important;
}

.slick-dots li button:before {
    color: #ccc !important;
}

.slick-dots li.slick-active button:before {
    color: #4CAF50 !important;
}

