.alert-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    max-width: 300px;
    pointer-events: none;
}

.alert {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease-in-out;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: auto;
}

.alert.show {
    opacity: 1;
    transform: translateX(0);
}

.alert-success {
    border-left-color: #10B981;
    background-color: #ECFDF5;
}

.alert-error {
    border-left-color: #EF4444;
    background-color: #FEF2F2;
}

.alert-info {
    border-left-color: #438d9a;  /* Updated to new brand color */
    background-color: #EFF6FF;
}

.alert-warning {
    border-left-color: #F59E0B;
    background-color: #FFFBEB;
}

.alert-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.alert-success .alert-icon {
    color: #10B981;
}

.alert-error .alert-icon {
    color: #EF4444;
}

.alert-info .alert-icon {
    color: #438d9a;  /* Updated to new brand color */
}

.alert-warning .alert-icon {
    color: #F59E0B;
}

.alert-message {
    flex-grow: 1;
    color: #1F2937;
    margin: 0;
    line-height: 1.4;
}