/* VLC-STYLE DARK THEME */
body {
    background-color: #2b2b2b;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    background: #3c3c3c;
    padding: 5px;
    border: 1px solid #555;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.vlc-header {
    background: #444;
    padding: 8px 15px;
    font-size: 14px;
    border-bottom: 1px solid #555;
    margin-bottom: 5px;
    color: #ccc;
    font-weight: bold;
}

.layout {
    display: flex;
    gap: 5px;
    height: 75vh;
    min-height: 500px;
}

/* PLAYLIST RÉSZ */
.playlist-container {
    flex: 1;
    background: #1e1e1e;
    border: 1px solid #111;
    display: flex;
    flex-direction: column;
    min-width: 250px;
}

.playlist-header {
    background: #2a2a2a;
    padding: 10px;
    font-weight: bold;
    font-size: 13px;
    border-bottom: 1px solid #444;
    color: #ff8800; /* VLC Orange */
}

.file-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    flex-grow: 1;
}

.file-list li {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #2a2a2a;
    font-size: 13px;
    color: #bbb;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background 0.2s;
}

.file-list li:hover {
    background: #333;
    color: #fff;
}

.file-list li.active {
    background: #ff8800;
    color: #000;
    font-weight: bold;
}

/* VIEWER RÉSZ */
.viewer {
    flex: 3;
    background: #000;
    display: flex;
    flex-direction: column;
    border: 1px solid #111;
}

video {
    width: 100%;
    height: 100%;
    outline: none;
    background: #000;
    object-fit: contain;
}

.vlc-controls-mock {
    height: 45px;
    background: #3c3c3c;
    border-top: 1px solid #555;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 12px;
}

/* SCROLLBAR STÍLUS */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1e1e1e; }
::-webkit-scrollbar-thumb { background: #444; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #ff8800; }

/* MOBIL NÉZET */
@media (max-width: 850px) {
    .layout { flex-direction: column; height: auto; }
    .playlist-container { height: 300px; }
}