/* Estilos Gerais */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container Principal */
.container {
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Cabeçalho */
header {
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

header h1 {
    color: #2c3e50;
    margin: 0;
}

header p {
    color: #7f8c8d;
    font-size: 1rem;
    margin-top: 5px;
}

/* Seções de Listas de Arquivos */
.file-list, .directory-list {
    margin-bottom: 30px;
}

h2 {
    color: #34495e;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    font-size: 1.4rem;
}

/* Lista de Arquivos (ul e li) */
ul {
    list-style-type: none;
    padding: 0;
}

li {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

li:hover {
    background-color: #e9ecef;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Ícones e Links */
.icon {
    font-size: 1.5rem; /* Aumenta o tamanho do emoji */
    margin-right: 15px;
}

a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    font-size: 1.1rem;
    word-break: break-all; /* Garante que nomes de arquivos longos não quebrem o layout */
}

a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Rodapé */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #95a5a6;
}