/* Toast styles */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    white-space: nowrap;    
    font-weight: bold;
    text-align: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    max-width: 90%;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;   
}

.toast.show {
    opacity: 1;
    visibility: visible;
}

.toast.hide {
    opacity: 0;
    visibility: hidden;
}
