/* Estilos modernos y profesionales para dashboard y perfil */
body {
    background: #f4f6fb;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}
/* Fix paginación flechas grandes */
.pagination svg {
    width: 1em !important;
    height: 1em !important;
    vertical-align: middle;
    color: #1976d2;
}
.pagination .page-link {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
}
/* Opcional: mejorar el hover */
.pagination .page-link:hover {
    background: #e3f0fa;
    color: #1976d2;
}
/* Sidebar responsive y logo más pequeño */
.sidebar {
    background: #fff;
    border-right: 1px solid #e0e0e0;
    min-width: 70px;
    width: 220px;
    max-width: 220px;
    transition: width 0.3s;
    box-shadow: 2px 0 8px rgba(0,0,0,0.03);
}
.sidebar.collapsed {
    width: 70px !important;
    min-width: 70px !important;
    max-width: 70px !important;
}
.sidebar-header {
    background: #0077C8;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 12px;
    border-bottom: 1px solid #e0e0e0;
}
.sidebar-logo {
    width: 38px !important;
    height: 38px !important;
    object-fit: contain;
    margin-right: 4px;
}
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-menu li {
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #222;
    font-size: 1.08rem;
    cursor: pointer;
    border-left: 4px solid transparent;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.sidebar-menu li:hover, .sidebar-menu .sidebar-menu-item a:active, .sidebar-menu .sidebar-menu-item a:focus {
    background: #e3f0fa;
    color: #0077C8;
    border-left: 4px solid #0077C8;
    text-decoration: none;
}
.sidebar-menu .sidebar-menu-item a {
    color: inherit;
    text-decoration: none;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-menu .fa {
    min-width: 22px;
    text-align: center;
}
#main-content {
    background: #f4f6fb;
    min-height: 100vh;
    padding-top: 80px;
}
.card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.card-title {
    color: #0077C8;
    font-weight: 700;
}
.btn-primary {
    background: #1976d2;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 12px 28px;
    box-shadow: 0 2px 8px rgba(25,118,210,0.08);
    transition: background 0.18s, box-shadow 0.18s;
}
.btn-primary:hover {
    background: #005fa3;
    box-shadow: 0 4px 16px rgba(25,118,210,0.13);
}
.profile-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #0077C8;
    background: #f8f9fa;
    margin-bottom: 18px;
}
.badge.bg-primary {
    background: #1976d2;
    color: #fff;
    font-size: 1rem;
    border-radius: 6px;
    padding: 6px 18px;
}
@media (max-width: 900px) {
    .sidebar {
        min-width: 60px;
    }
    #main-content {
        margin-left: 60px;
    }
}
