*{
  font-family: 'Open Sans', Helvetica, sans-serif, Arial, sans-serif;
}
/* toast start  */

#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 280px;
}

.toast {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 250px;
    margin-top: 10px;
    padding: 12px 20px;
    border-radius: 6px;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(100%);
    animation: slide-in 0.5s forwards;
}

.toast.success { background-color: #4CAF50; }
.toast.error { background-color: #f44336; }

.toast .close-btn {
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}

.toast .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255,255,255,0.7);
    width: 100%;
    animation: progress 4s linear forwards;
}

@keyframes slide-in {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes progress {
    from { width: 100%; }
    to { width: 0; }
}

/* toast end  */