/* TraPay Notification Styles - Minimal & Clean Design */

/* Base alert styles */
.alert {
    position: relative;
    padding: 1rem 3.5rem 1rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    font-family: IRANSans, Tahoma, Arial, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Alert paragraph */
.alert p {
    margin: 0;
    padding: 0;
}

/* Close button */
.alert .close {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    color: inherit;
    opacity: 0.6;
    padding: 0;
}

.alert .close:hover {
    opacity: 1;
}

/* Danger/Error Alert */
.alert-danger {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

/* Success Alert */
.alert-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

/* Warning Alert */
.alert-warning {
    background-color: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

/* Info Alert */
.alert-info {
    background-color: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
}

/* Responsive */
@media (max-width: 640px) {
    .alert {
        padding: 0.875rem 3rem 0.875rem 1rem;
        font-size: 0.875rem;
    }
}
