body {
    margin:0;
    font-family:system-ui;
    background:#0f1115;
    color:#e6e6e6;
}

header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 24px;
    background:#181b22;
    border-bottom:1px solid #2c2f36;
}

h1 {
    margin:0;
    font-size:20px;
}

#search {
    background:#0f1115;
    border:1px solid #333;
    color:white;
    padding:8px 12px;
    border-radius:6px;
}

main {
    padding:20px;
}

table {
    width:100%;
    border-collapse:collapse;
}

th {
    text-align:left;
    padding:12px;
    border-bottom:1px solid #333;
}

td {
    padding:10px 12px;
    border-bottom:1px solid #222;
}

tr:hover {
    background:#1b1f27;
}

a {
    color:#6ab0ff;
    text-decoration:none;
}

.folder::before {
    content:"📁 ";
}

.video::before {
    content:"🎬 ";
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    padding: 20px;
}

.movie-card {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: transform .15s ease;
}

.movie-card:hover {
    transform: scale(1.05);
}

.movie-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.movie-card .title {
    padding: 10px;
    font-size: 14px;
}
