/* Estilos gerais */
body {
    font-family: Arial, sans-serif; /* Fonte padrão e legível */
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Fundo mais claro */
    color: #333; /* Cor de texto padrão */
    line-height: 1.6;
}

header {
    background-color: #e8e0d5; /* Mantendo um tom suave do original */
    padding: 15px 30px;
    border-bottom: 2px solid #d3c0a5;
    text-align: center;
}

.banner-title h1 {
    font-family: 'Times New Roman', Times, serif; /* Fonte mais clássica, mas não medieval */
    font-size: 2em; /* Tamanho reduzido */
    margin: 0 0 5px 0;
    color: #5a4a3a;
}

.banner-title h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1em; /* Tamanho reduzido */
    margin: 0;
    font-weight: normal;
    color: #7a6a5a;
}

.contact-info {
    margin-top: 10px;
    font-size: 0.9em;
}

.contact-info a {
    color: #5a4a3a;
    text-decoration: none;
    margin: 0 10px;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info span {
    color: #b3a08a;
}

main {
    padding: 20px;
    max-width: 900px; /* Limita a largura para melhor leitura */
    margin: 20px auto; /* Centraliza o conteúdo principal */
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#video-list h2 {
    font-family: 'Times New Roman', Times, serif;
    color: #5a4a3a;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5em;
}

/* Estilos da Lista de Vídeos */
.video-list {
    list-style: none;
    padding: 0;
}

.video-list li {
    border-bottom: 1px dashed #ccc; /* Separador mais sutil */
    padding: 8px 0; /* Espaçamento vertical menor */
    margin-bottom: 8px;
}

.video-list li:last-child {
    border-bottom: none;
}

.video-date {
    /* display: block; /* Data em linha separada - REMOVIDO para ficar na mesma linha */
    font-size: 0.85em;
    color: #777;
    margin-right: 5px; /* Espaço entre data e título */
}

.video-list li a {
    font-size: 0.95em; /* Fonte menor */
    color: #5a4a3a; /* Mesma cor do título principal do banner */
    text-decoration: none;
    /* font-weight: bold; /* Removido negrito para fonte mais leve */
}

.video-list li a:hover {
    text-decoration: underline;
}

/* Formulário Estático */
#add-video-form {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

#add-video-form h3 {
    font-family: 'Times New Roman', Times, serif;
    color: #5a4a3a;
    font-size: 1.3em;
    margin-bottom: 15px;
}

#add-video-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9em;
}

#add-video-form input[type="text"],
#add-video-form input[type="date"] {
    width: calc(100% - 22px); /* Ajuste para padding e borda */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9em;
}

#add-video-form button {
    background-color: #5a4a3a;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

#add-video-form button:hover {
    background-color: #7a6a5a;
}

#add-video-form small {
    display: block;
    margin-top: 10px;
    color: #888;
    font-size: 0.8em;
}


/* Estilos de Paginação */
.pagination {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    border: 1px solid #ddd;
    color: #5a4a3a; /* Cor ajustada */
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em; /* Tamanho ajustado */
}

.pagination a:hover {
    background-color: #eee;
}

.pagination .current {
    background-color: #5a4a3a;
    color: white;
    border-color: #5a4a3a;
    font-weight: bold;
}

.pagination .disabled {
    color: #ccc;
    border-color: #ddd;
    cursor: default;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    font-size: 0.8em;
    color: #777;
    border-top: 1px solid #eee;
}

