.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    text-align: center;
    margin: 40px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.page-header h1 {
    font-size: 2.5rem;
}
.page-header p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}

.edital-list {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Espaço entre os cards de edital */
}

.edital-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #1e397e; /* Borda com sua cor principal */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.edital-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.edital-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.edital-status {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    margin-bottom: 15px;
}
/* Estilos para o status */
.status-aberto {
    background-color: #d4edda; /* Verde claro */
    color: #155724; /* Verde escuro */
}
.status-encerrado {
    background-color: #f8d7da; /* Vermelho claro */
    color: #721c24; /* Vermelho escuro */
}

.edital-title {
    font-size: 1.5rem;
    color: #333;
}

.edital-body {
    padding: 25px;
}

.edital-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.btn-download {
    display: inline-block;
    margin-top: 20px;
    background-color: #1e397e;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.btn-download:hover {
    background-color: #14285a;
}