

.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    border-radius: 12px;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.toast-success {
    background-color: #dff0d8;
    color: #3c763d;
}

.toast-notice {
    background-color: #fcf8e3;
    color: #8a6d3b;
}

.toast-error {
    background-color: #f2dede;
    color: #a94442;
}

.toast-header {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: 600;
}

.toast-body {
    padding: 0.75rem 1rem;
}
