style.css - Global Styles

/* Navbar Styles */
.user-profile .dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    min-width: 280px;
    border-radius: 8px;
}

.dropdown-header {
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
}

.user-avatar img {
    transition: all 0.2s ease;
}

.user-avatar img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .user-info {
        display: none !important;
    }

    .dropdown-menu {
        min-width: 250px;
    }
}

/* Add more reusable styles for all modules below */
.card {
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.btn {
    border-radius: 6px;
    font-weight: 500;
}
