.rtsp-player {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin: 20px 0;
}

.rtsp-player iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.rtsp-player .controls {
    background: #1e1e1e;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rtsp-player .controls label {
    color: #fff;
    font-family: monospace;
    font-size: 14px;
}

.rtsp-player select {
    background: #333;
    color: white;
    border: 1px solid #e67e22;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.rtsp-player select:hover {
    background: #444;
}