body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f5f5; // Fundo cinza claro
    text-align: center; // Centraliza o texto
}

.main-container {
    display: flex;
    justify-content: center; // Centraliza horizontalmente
    align-items: center; // Centraliza verticalmente
    height: 100vh; // Preenche a altura total da tela
}

.container {
    width: 60%; // Diminui a largura do contêiner para não ficar tão grande
    padding: 20px; 
    background: #ffffff; 
    border: 1px solid #dcdcdc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

.title-grid {
    display: flex;
    flex-wrap: wrap; 
    margin-left: 50px;
}

.folder-grid {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; // Centraliza as pastas
}

.folder-item {
    width: 100px; // Ajusta o tamanho do contêiner de pastas
    height: 100px; 
    border: 1px solid #dcdcdc;
    background: #ffffff; 
    margin: 10px; 
    text-align: center; 
    transition: background 0.3s, transform 0.3s;
}

.folder-item a {
    text-decoration: none;
    color: #333; 
    font-weight: bold;
}

.folder-item:hover {
    background: #f0f0f0; 
    transform: scale(1.05); 
}

.image-grid {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; // Centraliza as imagens
}

.image-item {
    width: 120px; // Aumenta um pouco o tamanho das imagens
    height: 120px; 
    border: 1px solid #ddd; 
    background: #ffffff;
    margin: 10px;
    text-align: center;
}

.thumbnail {
    width: 100px; 
    height: 100px; 
    border-radius: 5px; 
    margin: 10px 10px 10px 10px;
}

.image-item:hover {
    background: #f0f0f0; 
    transform: scale(1.05); 
}
