/* Estilo general */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fc;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Contenedor principal */
.container {
    max-width: 900px;
    margin: 40px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Título principal */
h1 {
    font-size: 28px;
    color: #007BFF;
    text-align: center;
    margin-bottom: 10px;
}

/* Descripción del título */
p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

/* Estilo de los filtros */
.filters {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.filters label {
    font-size: 14px;
    color: #555;
    margin-right: 10px;
}

.filters select, #search {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 48%;
    box-sizing: border-box;
}

/* Caja de búsqueda */
#search {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
}

/* Estilo de la tabla */
.tabla-estilo {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
    text-align: left;
}

.tabla-estilo th, .tabla-estilo td {
    padding: 12px;
    border: 1px solid #ddd;
}

.tabla-estilo th {
    background-color: #007BFF;
    color: white;
    font-weight: bold;
}

.tabla-estilo td {
    background-color: #f9f9f9;
}

/* Estilo para los enlaces de LinkedIn */
.tabla-estilo td a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.tabla-estilo td a:hover {
    text-decoration: underline;
}

/* Efecto al pasar el mouse por las filas */
.tabla-estilo tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

/* Estilo para la paginación */
.dataTables_wrapper .dataTables_paginate {
    text-align: center;
    margin-top: 20px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 5px 10px;
    margin: 0 5px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #0056b3;
}

/* Estilo de la columna de Descripción */
.tabla-estilo td.descripcion-col {
    width: 40%; /* Asegura que la columna de descripción sea más ancha */
}

/* Contenedor de filtros y tabla */
.filters-container {
    margin-bottom: 30px;
    padding: 10px;
    border-bottom: 2px solid #ddd;
    text-align: center;
    background-color: #f7f7f7;
    border-radius: 5px;
}

.table-container {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
}

/* Estilo mejorado para el botón de inscripción */
/* Estilo para el botón de inscripción */
.btn-inscripcion {
    background-color: #28a745; /* Verde de éxito */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    margin-bottom: 15px; /* Espacio añadido entre el botón y el cuadro de búsqueda */
    text-decoration: none; /* Evitar subrayado */
}

.btn-inscripcion:hover {
    background-color: #218838; /* Verde más oscuro al pasar el ratón */
}

.btn-inscripcion a{
    text-decoration: none; /* Evitar subrayado */
}
