/* Estilos customizados — Inventário TI */

:root {
    --sidebar-width: 260px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Login */
.login-page {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 50%, #084298 100%);
}

.login-icon {
    width: 64px;
    height: 64px;
}

/* Sidebar */
.sidebar {
    min-height: calc(100vh - 56px);
}

.sidebar .nav-link {
    color: #333;
    padding: 0.65rem 1rem;
    border-radius: 0.375rem;
    margin: 0.15rem 0.5rem;
    font-size: 0.9rem;
}

.sidebar .nav-link:hover:not(.disabled) {
    background-color: #f0f4ff;
    color: #0d6efd;
}

.sidebar .nav-link.active {
    background-color: #0d6efd;
    color: #fff;
}

.sidebar .nav-link.disabled {
    pointer-events: none;
    opacity: 0.7;
}

/* Cards de estatísticas */
.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsividade */
@media (max-width: 767.98px) {
    main {
        padding-top: 1rem !important;
    }
}
