
        .easyweek-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999998;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .easyweek-modal {
            position: relative;
            width: 500px;
            height: 600px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            animation: slideIn 0.3s ease;
        }
        
        @keyframes slideIn {
            from {
                transform: translateY(-20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .easyweek-header {
            padding: 16px 20px;
            background: #FF6B00;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .easyweek-title {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }
        
        .easyweek-close {
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background 0.2s;
        }
        
        .easyweek-close:hover {
            background: rgba(255,255,255,0.3);
        }
        
        .easyweek-content {
            flex: 1;
            padding: 0;
            background: #f5f5f5;
        }
        
        .easyweek-content iframe {
            width: 100%;
            height: 100%;
            border: none;
            background: white;
        }
        
        @media (max-width: 768px) {
            .easyweek-modal {
                width: 90%;
                height: 80%;
            }
        }
