/* ==============================
   ESTILO FRUGITER AERO – TABLA LIBRARY
   Nombres únicos: libAero-*
   ============================== */

/* Contenedor principal */
.libAero-container {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

/* Tabla */
#share.libAero-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 10px;
}

/* Encabezados */
#share.libAero-table thead th {
    background: rgba(255,255,255,0.45);
    color: #1a1a1a;
    font-weight: 600;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

/* Filas */
#share.libAero-table tbody tr {
    transition: background 0.25s ease, transform 0.15s ease;
}

#share.libAero-table tbody tr:nth-child(even) {
    background: rgba(255,255,255,0.25);
}

#share.libAero-table tbody tr:hover {
    background: rgba(255,255,255,0.45);
    transform: scale(1.01);
}

/* Celdas */
#share.libAero-table tbody td {
    padding: 10px;
    text-align: center;
    font-size: 13px;
    color: #1c1c1c;
}

/* Íconos botones */
.libAero-btn {
    background: linear-gradient(135deg, #4fa3ff, #006eff);
    color: white !important;
    border: none;
    padding: 6px 10px;
    border-radius: 12px;
    transition: 0.2s;
    box-shadow: 0 3px 8px rgba(0, 110, 255, 0.35);
}

.libAero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 110, 255, 0.45);
}

/* Botón imagen */
.imagelink img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    transition: 0.25s;
}

.imagelink img:hover {
    transform: scale(1.07);
}

/* Cuadro de búsqueda */
#library-search {
    width: 260px;
    padding: 10px 15px;
    border-radius: 14px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(7px);
    box-shadow: 0 3px 12px rgba(0,0,0,0.18);
    transition: 0.25s;
    font-size: 14px;
}

#library-search:focus {
    background: rgba(255,255,255,0.6);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* Paginación */
.pager {
    margin-top: 18px;
}

.pager a {
    padding: 8px 14px;
    margin: 0 4px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    color: black;
    text-decoration: none;
    transition: 0.2s;
}

.pager a:hover {
    background: rgba(255,255,255,0.5);
}
