body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 20px;
    color: #333;
}

h1 {
    background: #cdd9e9;
    color: #be8710;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    font-size: 1.8em;
    margin-bottom: 30px;
}

h2 {
    color: #444;
    text-align: center;
}

/* Formulario */
form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: auto;
}

form input, form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: left;

    /* Ajustes de fuente */
    font-family: Arial, sans-serif; /* o la fuente corporativa que uses */
    font-size: 0.95em;              /* tamaño más compacto */
    color: #333;                    /* color del texto */
}


/* Botones */
button, .btn-nueva {
    padding: 10px 20px;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95em;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

button:hover, .btn-nueva:hover {
    background: #e6b800;
    transform: translateY(-2px);
}
.imagen-botones img {
    max-width: 80px;   /* tamaño controlado */
    height: auto;
}
/* Contenedor de acciones */
.acciones {
    display: flex;
    justify-content: center;
    gap: 10px;
}
footer {
    margin-top: 60px;
    padding: 20px;
    background: #1e3a5f; /* azul corporativo */
    color: #fff;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    align-items: center;       /* centra verticalmente logo y texto */
    justify-content: center;   /* centra todo el bloque en la página */
    gap: 15px;                 /* espacio entre logo y texto */
}

.footer-logo {
    width: 60px;   /* tamaño ajustado del logo */
    height: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    border: 2px solid green; /* borde verde externo */
    font-family: Arial, sans-serif;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

table th, table td {
    padding: 10px;
    border: 1px solid green; /* bordes internos verdes */
    text-align: center;
}

/* Encabezado */
table th {
    background-color: #2e7d32; /* verde más fuerte */
    color: #fff;
    font-weight: bold;
}

/* Filas alternadas */
table tr:nth-child(even) {
    background-color: #e3f2fd; /* azul claro */
}

table tr:nth-child(odd) {
    background-color: #f5f5f5; /* gris claro */
}

/* Hover para resaltar fila */
table tr:hover {
    background-color: #c8e6c9; /* verde muy suave */
}

.aviso-canal {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff3cd; /* amarillo suave */
    border: 1px solid #ffeeba;
    border-radius: 5px;
    color: #856404;
    font-weight: bold;
    text-align: center;
}


/* Responsive */
@media (max-width: 480px) {
    form {
        padding: 10px;
    }
    button, .btn-nueva {
        width: 100%; /* en móvil se apilan */
    }
}
