#toast-bar {
    position: fixed;
    top: 0;
    padding: 14px 20px;
    border-radius: 10px;
    margin: 20px;
    display: flex;
    justify-content: space-between;
    justify-self: center;
    align-items: center;
    align-self: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2001;
    box-sizing: border-box;
    min-width: 50vw;
}
#toast-bar.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
#toast-bar.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
#toast-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    opacity: 0.7;
    padding-block: 1px;
    padding-inline: 6px;
    margin: 0;
    border-radius: 0;
    width: auto;
    color: buttontext;
}
#toast-close:hover { opacity: 1; }

.hidden { display: none !important; }