/* Modern Card Styles */
.facility-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}
.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/* Modal Custom Sizing and Layout */
#facilityModal .modal-content {
    height: 550px; /* Fixed Height to prevent jumping */
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
}

/* Native Vue Slider Styles */
.slider-container {
    position: relative;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.slider-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
    opacity: 0.8;
    z-index: 10;
}
.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
}
.slider-btn-prev {
    left: 12px;
}
.slider-btn-next {
    right: 12px;
}
.slider-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}
.slider-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.2s;
}
.slider-indicator.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Modal Rich Text Styles */
#facilityModal h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}
#facilityModal h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
}
/*#facilityModal h5 {*/
/*    font-size: 1.05rem;*/
/*    font-weight: 600;*/
/*    color: #4f5f6f;*/
/*    margin-top: 0.75rem;*/
/*    margin-bottom: 0.3rem;*/
/*}*/
#facilityModal ul {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}
#facilityModal li {
    margin-bottom: 0.35rem;
    color: #555;
}
/*#facilityModal a {*/
/*    color: #0d6efd;*/
/*    text-decoration: underline;*/
/*    transition: color 0.15s ease-in-out;*/
/*}*/
/*#facilityModal a:hover {*/
/*    color: #0a58ca;*/
/*}*/
