.dashToast {
    position: absolute;
    left: 5px;
    float: right;
    opacity: 99%;
    width: 350px;
    height: 60px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 3000;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s ease;

}

.dashToast:hover {
    transform: scale(1.02); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    opacity: 0.8;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.dashToast.no-hover {
    pointer-events: none;
    transition: none !important;
}

.dashToast.no-hover:hover {
    transform: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
}

.toastProgressBar {
    height: 3px;
    width: 100%;
    position: absolute;
    bottom: 0.5px;
    transform-origin: left;
    transform: scaleX(1); 
    border-radius: 0 0 10px 0px;
}

@keyframes toastProgress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

@keyframes bounceEffectError {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-12px);
    }
    50% {
        transform: translateY(0);
    }
    70% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes bounceEffect {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(0);
    }
    70% {
        transform: translateY(-1px);
    }
    100% {
        transform: translateY(0);
    }
}

.toastDetail {
    width: 100%;
    height: 90%;
    align-items: center;
    display: flex;
    padding-top: 1%;
}

.toastTitle {
    font-size: 14px;
    float: left;
    margin-right:8px;
}

.toastMessage {
    flex: 1;
    height: 100%;
}

.toastText {
    font-size: 14px;
    float: left;
    width: 100%;
    height: 100%;
    display: flex;
}

.toastIcon {
    float: left;
    padding-left: 4%;
    font-size: 30px;
    padding-right: 2.5%;
    padding-top: 0%;
    flex: 0 0 15%;
}

.toastDismiss {
    float: right;
    font-size: 30px;
    cursor: pointer;
    flex: 0 0 11%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.toastDismiss:hover{
    opacity: 0.8;
}

.copyButton{
    background-color: transparent;
    font-size: 1rem;
    color: white;
    border: none;
}

.copyButton:active , .copyButton:hover{
  opacity: 0.8;
}

.toastTextDesc2 {
    margin: auto;
    height: 100%;
    justify-items: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.toastSeperator {
    flex: 0 0 0.5%;
    height: 80%;
    border-radius: 5px;
    opacity: 0.15;
}

#simpleError {
    display: none;
}

#advancedError {
    display: none;
}

#dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: auto;
    z-index: 3000;
    background-color: #222627;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    color: white;
    border: 2px solid #484848;
    text-align: center;
    font-size: 22px;
    line-height: 32px !important;
    resize: horizontal;
    min-width: 20%;
    max-width: 80%;
    min-height: 20%;
    max-height: 80%;
}

.dialogHeader {
    display: flex !important;
    align-items: center !important;
    padding: 10px !important;
    position: relative !important;
}

.dialogTitle {
    font-weight: bold !important;
    font-size: x-large !important;
    margin: 0 auto !important;
    text-align: center !important;
    flex-grow: 1 !important;
}

.dialogClose {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background-color: transparent;
    position: absolute;
    right: 10px;
    top: 10px;
}

.dialogClose:hover {
    opacity: 0.8 !important;
}

.dialogIconClose {
    font-size: 32px;
    color: white;
    
}

.dialogIcon {
    font-size: 12px !important;
    float: none !important;
    color: white !important;
}

.dialogData {
    padding: 20px;
    font-size: 14px;
    color: white;
    line-height: 1.5;
    overflow-y: auto;
    max-height: 450px;
    position: relative;
}

.dialogData b {
    color: var(--accent-color);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.copyButton {
    border: none;
    background: none;
    padding: 4px 8px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    margin-left: 5px;
    transition: background-color 0.3s;
}

.copyButton:hover {
    opacity: 0.8;
}

.toggleToastInfo{
    position: relative;
    background: none;
    border: none;
    background-color: var(--accent-color) !important;
    border-radius: 4px;
    top: 0px;
    margin-bottom: 20px;
    padding: 4px 20px;
}

.toggleToastInfoIcon {
    padding: 0 !important;
    color: white !important;
}

.toastInfo {
    display: none;
}

.toggleToastInfo:hover{
    opacity: 0.8;
}