﻿body {
    background: #f4f6f9;
}

.file-explorer {
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Toolbar */

.toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(to bottom, #f8f9fb, #eef1f5);
    border-bottom: 1px solid #ddd;
}

    .toolbar button {
        padding: 7px 14px;
        border-radius: 6px;
        border: 1px solid #cfd4dc;
        background: white;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.15s ease-in-out;
    }

        .toolbar button:hover {
            background: #e9f0ff;
            border-color: #8aa8ff;
        }

        .toolbar button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

#currentPath {
    margin-left: auto;
    font-size: 13px;
    color: #444;
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* File container */

.file-container {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #ffffff;
}

/* List row style */

.file-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    cursor: pointer;
    user-select: none;
    border-radius: 0;
    transition: background 0.12s ease-in-out;
    border: none;
}

    .file-item:hover {
        background: #eef3ff;
    }

    .file-item img {
        width: 24px;
        height: 24px;
        margin: 0;
    }

    .file-item span {
        margin: 0;
        font-size: 14px;
        color: #222;
    }

