#notificationModal {
    transition: all 0.3s ease;
}
.modal-content {
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-radius: 10px !important;
    background-color: #111 !important;
    transform: scale(0.95);
    opacity: 0;
    animation: modalEntrance 0.4s ease-out forwards;
    position: relative;
    overflow: hidden;
}
.modal-content:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.7);
    transform: scale(1) !important;
}
.notification-icon-wrapper {
    position: relative;
    display: inline-block;
}
.notification-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    z-index: 0;
}
.notification-timebar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transition: width 5s linear;
}
@keyframes modalEntrance {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    70% {
        transform: scale(1.02);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.fas.fa-3x {
    animation: iconPulse 0.6s ease-in-out;
    position: relative;
    z-index: 1;
}