/* Zoom meeting page specific styles */
.zoom-meeting-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.zoom-meeting-header {
    margin-bottom: 30px;
    text-align: center;
}

.zoom-meeting-header h1 {
    margin-bottom: 15px;
}

.zoom-meeting-meta {
    background: #f9f9f9;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    display: inline-block;
    text-align: left;
}

.zoom-meeting-meta p {
    margin: 5px 0;
}

.zoom-iframe-container {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    position: relative;
    width: 100%;
    height: 600px; /* Default height, will be adjusted by JS */
    margin: 0 auto;
}

.zoom-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.zoom-loading p {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .zoom-meeting-page {
        padding: 20px 10px;
    }

    .zoom-iframe-container {
        height: 400px; /* Smaller default height on mobile */
    }
}