.error-notification-outer-container {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    width: fit-content;
    min-width: 100px;
    /* height: 200px; */
    max-height: 10rem;
    overflow-y: auto;
    background-color: white;
    padding: 1rem;
    box-shadow: 0px 0px 3px 3px rgba(80, 103, 132, 0.165);
    border-radius: 4px;
    /* box-shadow: 1.5px 1.5px 3px rgba(80, 103, 132, 0.165), 0px 2px 6px rgba(80, 103, 132, 0.12), 0px 0px 1px rgba(80, 103, 132, 0.32); */
}

.error-notification-top-bar-container {
    width: 100%;
    height: fit-content;
    border-bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    line-height: 3rem;
}

.error-notification-title {
    font-size: 2rem;
}

.error-notification-title-icon {
    margin-right: 0.5rem;
}

.error-notification .close-button {
    font-size: 3rem;
    color: #8a8a8a;
    cursor: pointer;
    border-radius: 0;
    text-transform: none;
    margin: 0;
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
}

.error-notification .error-notification-content-container {
    height: fit-content;
} 