/* ===== EXPLORER ===== */
.explorer-toolbar { display: flex; align-items: center; padding: 3px; border-bottom: 1px solid #808080; background: #C0C0C0; flex-shrink: 0; gap: 2px; }
.explorer-toolbar button {
    background: #C0C0C0; border: 2px solid; border-color: #FFF #808080 #808080 #FFF;
    padding: 2px 8px; font-size: 12px; cursor: default; color: #000;
    font-family: "Tahoma", "Geneva", sans-serif; min-width: 60px; height: 22px;
    display: flex; align-items: center; justify-content: center;
}
.explorer-toolbar button:active { border-color: #808080 #FFF #FFF #808080; }
.explorer-toolbar button:disabled { color: #808080; text-shadow: 1px 1px #fff; cursor: default; border-color: #C0C0C0; }
.explorer-address-bar {
    border: 2px inset; border-color: #808080 #FFF #FFF #808080; background: white;
    padding: 2px 6px; flex-grow: 1; margin: 0 5px; font-size: 11px; color: #000;
    height: 20px; line-height: 20px; font-family: "Tahoma", "Geneva", sans-serif;
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.explorer-content { background: white; display: flex; flex-wrap: wrap; align-content: flex-start; gap: 8px; padding: 8px; }
.fs-item { width: 75px; text-align: center; padding: 4px; cursor: default; color: #000; user-select: none; }
.fs-item:hover { background: #000080; color: white; }
.fs-item.selected { background: #000080; color: white; }
.fs-item img { width: 32px; height: 32px; margin: 0 auto 3px; display: block; pointer-events: none; }
.fs-item span { font-size: 11px; display: block; word-wrap: break-word; pointer-events: none; line-height: 1.2; }

/* Content windows (Help, Privacy, Readme) */
.static-content-window h2, .readme-content-window h2 { font-weight: bold; font-size: 14px; margin-top: 0; margin-bottom: 10px; border-bottom: 1px solid #808080; padding-bottom: 5px; }
.static-content-window p, .readme-content-window p { margin-bottom: 10px; line-height: 1.5; }
.static-content-window ul, .readme-content-window ul { margin-left: 20px; margin-bottom: 10px; list-style-type: disc; }
.static-content-window li, .readme-content-window li { margin-bottom: 5px; }
.static-content-window strong, .readme-content-window strong { font-weight: bold; }
.readme-content-window { background-color: #c0c0c0; padding: 10px; }
