/* Payment status styles */
.payment-status {
  border-radius: 0.5rem;
  font-weight: 500;
}

.payment-status-info {
  background-color: #dbeafe; /* blue-100 */
  color: #1e40af; /* blue-800 */
  border: 1px solid #93c5fd; /* blue-300 */
}

.payment-status-success {
  background-color: #dcfce7; /* green-100 */
  color: #166534; /* green-800 */
  border: 1px solid #86efac; /* green-300 */
}

.payment-status-error {
  background-color: #fee2e2; /* red-100 */
  color: #991b1b; /* red-800 */
  border: 1px solid #fca5a5; /* red-300 */
}
