.vellox-launcher-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10000;
}

.vellox-launcher-backdrop.open {
    display: block;
}

.vellox-launcher-panel {
    display: none;
    position: fixed;
    width: 320px;
    max-height: 80vh;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    z-index: 10001;
    flex-direction: column;
    overflow: hidden;
}

.vellox-launcher-panel.open {
    display: flex;
}

.vellox-launcher-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #323E3E;
}

.vellox-launcher-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    padding: 4px;
    line-height: 1;
}

.vellox-launcher-close:hover {
    color: #323E3E;
}

.vellox-launcher-iframe-container {
    flex: 0 1 auto;
    overflow: hidden;
}

.vellox-launcher-iframe-container iframe {
    display: block;
    width: 100%;
    border: none;
}

.vellox-launcher-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    color: #666;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 14px;
}

.vellox-launcher-error {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    color: #c62828;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 14px;
    padding: 16px;
    text-align: center;
}
