.customers-page {
  .border-left-primary {
    border-left: 4px solid #007bff !important;
  }

  .border-left-warning {
    border-left: 4px solid #ffc107 !important;
  }

  .border-left-danger {
    border-left: 4px solid #dc3545 !important;
  }

  .border-left-success {
    border-left: 4px solid #28a745 !important;
  }

  .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  }

  .card {
    transition: transform 0.2s;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }
  }

  .pay-due-icon-lg {
    font-size: 2rem;
  }

  .pay-due-icon-md {
    font-size: 1.5rem;
  }

  .font-weight-semibold {
    font-weight: 600;
  }
}

.portal-client-modal .modal-header {
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 1.25rem;
}

.portal-client-modal .modal-body {
  padding: 1.25rem;
}

.portal-client-header {
  padding: 0.5rem 0;
}

.portal-client-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #5b6bf6 0%, #3f51b5 100%);
  box-shadow: 0 4px 12px rgba(91, 107, 246, 0.35);
}

.portal-status-card {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: border-color 0.2s, background 0.2s;

  &.portal-enabled {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08) 0%, rgba(40, 167, 69, 0.04) 100%);
    border-color: rgba(40, 167, 69, 0.35);
  }

  &.portal-disabled {
    background: #f8f9fa;
    border-color: #e9ecef;
  }
}

.portal-status-icon {
  width: 40px;
  height: 40px;
}

.portal-enabled .portal-status-icon {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.portal-disabled .portal-status-icon {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.portal-password-toggle {
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.25rem;
  color: #6c757d;
  text-decoration: none;

  &:hover {
    color: #495057;
  }
}
