.fh-toast-container {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 9000;
    display: flex; flex-direction: column; align-items: center; width: 100%;
    pointer-events: none; opacity: 0; transition: opacity 0.3s ease-in-out;
}

.fh-toast {
    background-color: #333; color: white;
    padding: 12px 28px 12px 20px; border-radius: 4px; margin-bottom: 10px;
    max-width: 80%; width: auto; text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.fh-toast-dismiss {
    position:absolute; top:0.2em; right:0.4em;
    line-height:1em; padding: 0 0.2em 0.2em 0.2em; border-radius:inherit; 
    transform:scaleY(0.8); transform:scaleX(1.); 
    pointer-events:auto; cursor:pointer; 
    background-color:inherit; color:inherit; filter:brightness(0.85);
}

.fh-toast-info { background-color: #2196F3; }
.fh-toast-success { background-color: #4CAF50; }
.fh-toast-warning { background-color: #FF9800; }
.fh-toast-error { background-color: #F44336; }