/* Custom styles for the notifications */
.bg-light-success {
    background-color: rgba(0, 200, 81, 0.1) !important;
    border-left: 4px solid #00c851 !important;
}

/* Hover effect for notification items */
.list-group-item.hover-shadow:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Notification badge styling */
.notification-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff6d34;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Notification icon position */
.notification-icon {
    position: relative;
}

/* Notification types styling */
.notification-course-interest {
    border-left: 4px solid #33b5e5 !important;
}

.notification-enrollment {
    border-left: 4px solid #ff6d34 !important;
}

.notification-enrollment-request {
    border-left: 4px solid #ffbb33 !important;
}

.notification-bank-transaction {
    border-left: 4px solid #00c851 !important;
} 