.alert-container {
    z-index: 9;
    position: fixed;
    top: 1rem;
    right: 1rem;
    max-width: 20rem;
    width: 100%;
    padding: 1rem;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-container.success {
    background-color: #f0fdf4;
    border: 1px solid #34d399;
    color: #065f46;
}

.alert-container.error {
    background-color: #fee2e2;
    border: 1px solid #f87171;
    color: #991b1b;
}

.alert-title {
    font-weight: bold;
    margin-right: 0.5rem;
}

.alert-message {
    display: block;
    flex-grow: 1;
}

.alert-close {
    background: none;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    cursor: pointer;
}

.close-icon {
    fill: #ef4444;
    height: 1.5rem;
    width: 1.5rem;
}