﻿
.glitchy-toast-full-width {
    width: 100%;
    height: auto;
    min-height: 75px;
    box-sizing: border-box;
    padding: 0px 0px 0px 20px;
    position: fixed; /* Ensure the box stays at the top */
    top: 0; /* Align to the top of the page */
    z-index: 9999; /* Ensure it stays above other elements */
}

.glitchy-toast-success {
    background-color: green;
    color: white;
    border-color: darkgreen;
    border-width: 2px;
    border-style: solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
}

.glitchy-toast-error {
    background-color: red;
    color: white;
    border-color: orangered;
    border-width: 2px;
    border-style: solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
}

.glitchy-toast-warning {
    background-color: darkorange;
    color: white;
    border-color: orange;
    border-width: 2px;
    border-style: solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
}



.glitchy-toast-message-error {
    font-size: 16px;
    padding: 0px 0px 0px 20px;
    text-align: center;
}

.glitchy-toast-message-success {
    font-size: 16px;
    padding: 0px 0px 0px 20px;
    text-align: center;
}

.glitchy-toast-message-warning {
    font-size: 16px;
    padding: 0px 0px 0px 20px;
    text-align: center;
}

.glitchy-toast-control-error {
    width: 50px;
    background-color: darkred;
    min-height: 100% !important;
    right: 0px;
    bottom: 0;
    top: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold
}

.glitchy-toast-control-success {
    width: 50px;
    background-color: darkgreen;
    min-height: 100% !important;
    right: 0px;
    bottom: 0;
    top: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.glitchy-toast-control-warning {
    width: 50px;
    background-color: orange;
    min-height: 100% !important;
    right: 0px;
    bottom: 0;
    top: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold
}

.glitchy-toast-control-warning:hover {
        opacity: 0.9;
    }

.glitchy-toast-control-success:hover {
    opacity: 0.9;
}

.glitchy-toast-control-error:hover {
    opacity: 0.9;
}
