.notification_container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification_box {
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    animation: box_animation 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.error_box {
    background-color: #c20010;
    color: #cfcfcf;
    border-color: #74000c;
    font-weight: bold;
}

.success_box {
    background-color: #17e046;
    color: #cfcfcf;
    border-color: #c3e6cb;
    font-weight: bold;
}

@keyframes box_animation {
    0% {
        transform: translateX(110%);
        opacity: 0;
    }
    60% {
        transform: translateX(-5%);
        opacity: 1;
    }
    80% {
        transform: translateX(2%);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .notification_box {
        width: 80%;
        min-width: 0;
    }

    .notification_container {
        top: 10px;
        right: 10px;
        align-items: center;
    }
}