/* ------------------
   Colores Corporativos
   Oscuro: #202d4f
   Claro: #a6abb9
   ------------------ */

.avisos-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-bar {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 5px;
    padding: 10px 15px;
    border: 1px solid #a6abb9;
}

.search-bar i {
    color: #202d4f;
    margin-right: 10px;
    font-size: 1.2em;
}

#searchInput {
    flex-grow: 1;
    border: none;
    padding: 8px 0;
    font-size: 1em;
    outline: none;
    background-color: transparent;
}

/* ------------------
   Estilos de la Tabla (Basados en la imagen y colores)
   ------------------ */
.avisos-table {
    width: 100%;
    border-collapse: collapse;
}

.avisos-table thead {
    /* Barra de encabezado similar a la imagen: 3 columnas con colores */
    display: table-header-group;
}

.avisos-table th {
    color: white;
    padding: 15px 10px;
    text-align: left;
    font-weight: bold;
    font-size: 1.1em;
}

.avisos-table th:nth-child(1) { /* Columna No. */
    width: 8%;
    background-color: #202d4f; /* Gris claro */
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.avisos-table th:nth-child(2) { /* Columna Aviso */
    width: 72%;
    background-color: #202d4f; /* Azul oscuro */
}

.avisos-table th:nth-child(3) { /* Columna Descargar */
    width: 20%;
    background-color: #202d4f; /* Gris claro */
    text-align: center;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.avisos-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
    color: #555;
}

/* Color para la columna No. */
.avisos-table td:nth-child(1) {
    font-weight: bold;
    text-align: center;
    color: #202d4f;
    font-size: 1.1em;
}

/* Botón Descargar */
.download-btn {
    display: inline-block;
    background-color: #202d4f; /* Oscuro */
    color: #a6abb9; /* Claro */
    padding: 8px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    font-size: 0.9em;
    width: 80%;
    border: 2px solid #202d4f;
}

.download-btn:hover {
    background-color: white;
    color: #202d4f;
    border: 2px solid #202d4f;
}

/* Estilo de la fila al pasar el mouse */
.avisos-table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Mensaje de no resultados */
#noResults {
    display: none;
    text-align: center;
    padding: 20px;
    color: red;
}
