.notificationBody{
    position: fixed;
    z-index: 1000;
    top: -40px;
    left: 50%;
    transform: translate(-50%, -20px) scale(0.9);
    max-width: 90vw;
    max-height: 60px;

    display: flex;
    padding: 12px;
    padding-right: 20px;

    border-radius: 50px;
    color: white;
    border: 2px solid rgb(50, 50, 50);
    background: linear-gradient(45deg, rgb(41, 41, 41) 0%, rgb(63, 63, 63) 100%);
    box-shadow: 0 0 10px 0 rgb(0, 0, 0);
}

.notificationBody-appear{
    transition-duration: 500ms;
    transform: translate(-50%, 120px) scale(1);
}

.notificationBody-disappear{
    transition-duration: 500ms;
    transform: translate(-50%, -70px) scale(0.6, 0.6);
}

.notificationIcon{
    float: left;
    width: 50px;

    margin: 0;
    padding-top: 20px;
    padding-left: 0px;

    text-align: center;
}

.notificationIcon > p {
    position: relative;
    top: -20px;
    font-size: 30px;
}

.notificationText{
    position: relative;
    top: 5px;
    margin: 0;
    padding: 0;

    display: inline-block;
    white-space: nowrap;
    user-select: none;
}

.notificationText > p {
    font-family: 'Courier New', Courier, monospace;
    font-size: larger;
    font-weight: bold;
}

/* Responsive design for smaller screens */
@media screen and (max-width: 600px) {
    .notificationBody {
        min-width: 85vw;
        max-width: 90vw;
        border-radius: 20px;
        padding: 12px;
        min-height: 20px;
        max-height: 200px;
    }

    .notificationBody-appear {
        transform: translate(-50%, 100px) scale(1);
    }

    .notificationBody-appear {
        transform: translate(-50%, 100px) scale(1);
    }

    .notificationBody-disappear {
        transform: translate(-50%, -70px) scale(0.6, 0.6);
    }

    .notificationIcon {
        width: 40px;
        height: 20px;
        margin-right: 5px;
        padding-top: 15px;
    }

    .notificationIcon > p {
        font-size: 24px;
        top: -15px;
        margin-bottom: 0 !important;
    }

    .notificationText {
        white-space: normal;
        word-wrap: break-word;
        max-width: calc(90vw - 40px);
        margin-bottom: 0 !important;
        top: 2px;
    }

    .notificationText > p {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0 !important;
    }
}