.notification-container-wrapper {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 15%;
    max-height: 55%;
    overflow: hidden;
    transition: 0.5s;
}

.notification-container {
    display: flex;
    flex-direction: column-reverse;
    height: 100%;
    overflow-y: auto;
    background-color: transparent;
}

.notification {
    position: relative;
    padding: 4px;
    margin: 4px;
    background-color: #525252;
    border: 1px solid #aaa;
    border-radius: 3px;
}

.notification button {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 8px;
}