/* MODERNIZACIÓN SABER UCV - CSS CUSTOM */

/* 1. Tipografía y Fondo General */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f9; /* Gris muy claro azulado */
    color: #333;
    line-height: 1.6;
}

/* 2. Contenedor Principal con Sombra */
.main-content {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* 3. Limpieza de Tablas de DSpace */
table.miscTable {
    border: none !important;
    width: 100% !important;
    border-collapse: separate;
    border-spacing: 0 10px;
}

table.miscTable tr {
    background: #fff;
    transition: transform 0.2s;
}

table.miscTable tr:hover {
    background: #f9f9f9;
    transform: scale(1.01); /* Efecto sutil de levante */
}

table.miscTable td {
    padding: 15px !important;
    border-bottom: 1px solid #eee !important;
}

/* 4. Botones Modernos */
input[type="submit"], .button, button {
    background-color: #004a99 !important; /* Azul UCV */
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

input[type="submit"]:hover {
    background-color: #003366 !important;
}

/* 5. Estilo de la Barra Lateral (Sidebar) */
#sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #004a99;
}

/* 6. Caja de Búsqueda */
.search-box {
    background: #004a99;
    padding: 40px;
    border-radius: 8px;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.search-box input[type="text"] {
    width: 60%;
    padding: 12px;
    border-radius: 25px;
    border: none;
    outline: none;
}
