.notification {
    position: fixed;
    top: 104px;
    right: 23px;
    background-color: #2196f3;
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    max-width: 400px;
    animation: slideIn 0.5s ease-out forwards;
}

.notification-icon {
    margin-right: 15px;
    position: relative;
}

@media (max-width: 576px) {
    .notification-icon {
        display: none !important;
    }

    .notification {
        width: 88%;
        top: 60px;
        padding: 10px 20px;
        left: 23px;
    }
}

.notification-content {
    flex: 1;
}

.notification-message {
    font-size: 14px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
