/* Estilo base - Mobile First */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

/* Encabezado */
.div-post-prensa{
    text-align: center;
    padding: 0px;
    border: 1.5px solid grey;
    margin: 10px;
}

.div-post-prensa  h1 {
    font-size: 22px;
    color: #000000; /* Azul oscuro */
}

.div-post-prensa h1 span {
    color: #d32f2f; /* Rojo */
}

/* Formulario */
section {
    padding: 20px;
}

form {
    border: 1px solid gray;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

label {
    font-weight: bold;
    color: #1a237e;
    font-size: 14px;
}

input, select {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border 0.3s;
}

input:focus, select:focus {
    border: 1px solid #1a237e;
}

button {
    padding: 12px;
    background: #1a237e;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #d32f2f;
}

/* Tabla de inscriptos */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

th {
    background: #1a237e;
    color: #fff;
    font-size: 15px;
}

tr:hover {
    background: #f1f1f1;
}

/* Responsivo */
@media (min-width: 768px) {
    .div-post-prensa h1 {
        font-size: 28px;
    }

    form {
        max-width: 500px;
        margin: auto;
    }

    input, select, button {
        font-size: 16px;
    }

    th, td {
        font-size: 15px;
    }
}

@media (min-width: 1200px) {
    table {
        max-width: 1000px;
        margin: auto;
    }
}
