/* Notification Page Custom Styles */
.notification-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    background: #ffffff;
}

.notification-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-premium-sm {
    background: linear-gradient(45deg, #FF8C00, #FFD700);
    color: white !important;
    font-size: 0.8rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-premium-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

.modal-content {
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}