/*======================================
Theme Name: Palisade Partners
Theme URI: https://divicake.com/
Description: Palisade Partners
Version: 1.0
Author: MJAD
Author URI: https://www.masarjohnston.com/
Template: Divi
======================================*/


/* You can add your own CSS styles here. Use !important to overwrite styles if needed. */

/* Modal Overlay */
.pbg-bio-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    overflow-y: auto;
    padding: 20px;
}

.pbg-bio-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Container */
.pbg-bio-modal {
    background: #fff;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin: auto;
}

/* Close Button */
.pbg-bio-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.pbg-bio-modal-close:hover {
    background: #000;
}

/* Modal Content */
.pbg-bio-modal-body {
    padding: 40px;
}

.bio-modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
}

.bio-content {
    line-height: 1.6;
}

/* Loading State */
.pbg-bio-modal-loading {
    text-align: center;
    padding: 60px 40px;
    font-size: 18px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pbg-bio-modal {
        max-height: 95vh;
        margin: 20px;
    }
    
    .pbg-bio-modal-body {
        padding: 30px 20px;
    }
    
    .pbg-bio-modal-close {
        top: 10px;
        right: 10px;
    }
}