/* Custom styles for Akasi confirmation messages */
.akasi-alert-success {
    background-color: #dcfce7; /* Light green */
    border: 1px solid #bbf7d0;
    color: #166534; /* Dark green */
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.akasi-alert-success i {
    font-size: 20px;
    margin-right: 15px;
    color: #22c55e;
}

.akasi-alert-error {
    background-color: #fee2e2; /* Light red */
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
}

.akasi-alert-error i {
    font-size: 20px;
    margin-right: 15px;
    color: #ef4444;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.akasi-alert-success, .akasi-alert-error {
    animation: fadeInDown 0.4s ease-out;
}
