html,
body {
    margin: 0;
    /* height: calc(100%); */
}

body {
    /* background-color: #; */
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    color: white;
}

#container {
    /* margin: 10px; */
    margin-left: 280px;
    display: flex;
    background-color: #0D1B2A;
    /* width: calc(100%); */
    /* height: 100%; */
    align-items: stretch;
    align-content: stretch;
}

main {
    background-color: azure;
    flex-grow: 2;
    padding: 20px;
    color: black;
}

#error-info {
    color: red;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #4985ca;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stickyNotification {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 5px;
    width: 290px;
    min-height: 90px;
    padding: 10px;
    border-radius: 5px;
    border: 1px, solid, black;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    right: 10px;

}

.stickyNotification-error {
    background: linear-gradient(90deg, rgb(228, 121, 121), #d74646);
}

.stickyNotification-warning {
    background-color: yellow;
}

.stickyNotification-info {
    background-color: blue;
}

.stickyNotification .closeBtn {
    position: absolute;
    top: 5px;
    right: 10px;
}

.stickyNotification .closeBtn:hover {
    color: white;
    cursor: pointer;
}