/**
 * Zoom Meeting Popup Styles
 */

/* Zoom Join Button */
.zoom-join-button-wrapper {
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.zoom-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #2D8CFF;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.zoom-join-btn:hover {
    background: #1a6fd9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(45, 140, 255, 0.3);
}

.zoom-join-btn:active {
    transform: translateY(0);
}

.zoom-join-btn i {
    font-size: 16px;
}

/* Zoom Popup Overlay */
.zoom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

/* Zoom Popup Container */
.zoom-popup-container {
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    max-height: 900px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Zoom Popup Header */
.zoom-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: #2D8CFF;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zoom-popup-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.zoom-popup-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.zoom-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.zoom-popup-close i {
    font-size: 20px;
}

/* Zoom Popup Body */
.zoom-popup-body {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

#zoom-meeting-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#zmmtg-root {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .zoom-popup-container {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .zoom-popup-header {
        padding: 15px 20px;
    }
    
    .zoom-popup-header h3 {
        font-size: 18px;
    }
    
    .zoom-join-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Loading State */
.zoom-popup-body.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.zoom-popup-body.loading::before {
    content: "Loading Zoom Meeting...";
    font-size: 16px;
}

