.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 280px;
    max-width: 350px;
}

.toast-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-left: 4px solid #28a745;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 12px 16px;
    border-radius: 4px;
    color: #333;
    font-family: sans-serif;
    margin-bottom: 8px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-icon {
    color: #28a745;
    font-size: 18px;
}

.toast-title {
    font-weight: bold;
}

.toast-message {
    font-size: 14px;
}

.toast-close-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
}
