/* ROS-Audit — Custom Styles */

/* Smooth transitions for sidebar links */
.menu a {
    transition: background-color 0.15s ease, color 0.15s ease;
}

/* Active sidebar item highlight */
.menu a.active {
    background-color: #e8f0fe;
    color: #1a2744;
    font-weight: 600;
}

/* Stat card hover effect */
.stat {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Card hover */
.card {
    transition: box-shadow 0.15s ease;
}
.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
