/* 窗口基础样式 */
.floating-window {
    position: absolute;
    width: 400px;
    min-height: 60px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow: hidden;
    resize: both;
}

.window-header {
    padding: 10px 15px;
    background: #2c3e50;
    color: white;
    cursor: move;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.window-controls button {
    background: none;
    border: none;
    color: white;
    margin-left: 10px;
    cursor: pointer;
    font-size: 16px;
}

.window-body {
    flex: 1;
    padding: 15px;
    overflow: auto;
}

/* 控制栏样式 */
.control-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.app-launcher {
    padding: 8px 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* 内容区域公共样式 */
.content-section {
    margin-bottom: 20px;
}

.result-container {
    margin-top: 15px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 4px;
    display: none;
}

/* 播放器容器 */
#mse-player {
    width: 100%;
    height: 225px;
    background: #000;
    margin-bottom: 10px;
}

.player-controls {
    display: flex;
    gap: 5px;
}

.player-controls input {
    flex: 1;
    padding: 5px;
}

/* 在window-system.css或style.css中添加 */
.hidden {
    display: none ;
}
